Skip to content
Snippets Groups Projects
Commit 3a677b92 authored by Alex Lorenz's avatar Alex Lorenz
Browse files

Avoid the -Wdocumentation-unknown-command warning in Clang's C API docs

rdar://20441985


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@299650 91177308-0d34-0410-b5e6-96231b3b80d8
parent 0974a6fc
No related branches found
No related tags found
No related merge requests found
...@@ -4034,8 +4034,8 @@ CINDEX_LINKAGE unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C); ...@@ -4034,8 +4034,8 @@ CINDEX_LINKAGE unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C);
/** /**
* \brief Given a cursor that represents an Objective-C method or property * \brief Given a cursor that represents an Objective-C method or property
* declaration, return non-zero if the declaration was affected by "@optional". * declaration, return non-zero if the declaration was affected by "\@optional".
* Returns zero if the cursor is not such a declaration or it is "@required". * Returns zero if the cursor is not such a declaration or it is "\@required".
*/ */
CINDEX_LINKAGE unsigned clang_Cursor_isObjCOptional(CXCursor C); CINDEX_LINKAGE unsigned clang_Cursor_isObjCOptional(CXCursor C);
...@@ -4711,7 +4711,7 @@ enum CXCompletionChunkKind { ...@@ -4711,7 +4711,7 @@ enum CXCompletionChunkKind {
*/ */
CXCompletionChunk_HorizontalSpace, CXCompletionChunk_HorizontalSpace,
/** /**
* Vertical space ('\n'), after which it is generally a good idea to * Vertical space ('\\n'), after which it is generally a good idea to
* perform indentation. * perform indentation.
*/ */
CXCompletionChunk_VerticalSpace CXCompletionChunk_VerticalSpace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment