r195000 - clang/Parse/Parser.h: Fix annotations properly in SkipUntilFlags. [-Wdocumentation]
NAKAMURA Takumi
geek4civic at gmail.com
Mon Nov 18 02:38:28 PST 2013
Author: chapuni
Date: Mon Nov 18 04:38:28 2013
New Revision: 195000
URL: http://llvm.org/viewvc/llvm-project?rev=195000&view=rev
Log:
clang/Parse/Parser.h: Fix annotations properly in SkipUntilFlags. [-Wdocumentation]
Use ///< after member.
Modified:
cfe/trunk/include/clang/Parse/Parser.h
Modified: cfe/trunk/include/clang/Parse/Parser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Parser.h?rev=195000&r1=194999&r2=195000&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/Parser.h (original)
+++ cfe/trunk/include/clang/Parse/Parser.h Mon Nov 18 04:38:28 2013
@@ -737,12 +737,12 @@ private:
public:
- // Control flags for SkipUntil functions.
+ /// \brief Control flags for SkipUntil functions.
enum SkipUntilFlags {
- StopAtSemi = 1 << 0, /// \brief Stop skipping at semicolon
+ StopAtSemi = 1 << 0, ///< Stop skipping at semicolon
/// \brief Stop skipping at specified token, but don't skip the token itself
StopBeforeMatch = 1 << 1,
- StopAtCodeCompletion = 1 << 2 /// \brief Stop at code completion
+ StopAtCodeCompletion = 1 << 2 ///< Stop at code completion
};
friend LLVM_CONSTEXPR SkipUntilFlags operator|(SkipUntilFlags L,
More information about the cfe-commits
mailing list