diff options
-rw-r--r-- | clang/include/clang/Parse/Parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h index 00533f0e044..5fb4f7d7466 100644 --- a/clang/include/clang/Parse/Parser.h +++ b/clang/include/clang/Parse/Parser.h @@ -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, |