aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Lex
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-02-16 22:21:38 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-02-16 22:21:38 +0000
commit959dc8475fc20ce8c3fd55021cb9f02a531cddc5 (patch)
tree9e9c3a609d5dd18afe58e47ae6f68eccc0d04e44 /include/clang/Lex
parent6ba52aab96c96b6d91ed7f5844f607b32f7f41c4 (diff)
Use trailing documentation comments properly
Patch by Alexander Zinenko. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex')
-rw-r--r--include/clang/Lex/PreprocessorOptions.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/clang/Lex/PreprocessorOptions.h b/include/clang/Lex/PreprocessorOptions.h
index 7c79e6228a..eba2a13342 100644
--- a/include/clang/Lex/PreprocessorOptions.h
+++ b/include/clang/Lex/PreprocessorOptions.h
@@ -47,13 +47,14 @@ public:
std::vector<std::string> Includes;
std::vector<std::string> MacroIncludes;
- unsigned UsePredefines : 1; /// Initialize the preprocessor with the compiler
- /// and target specific predefines.
+ /// \brief Initialize the preprocessor with the compiler and target specific
+ /// predefines.
+ unsigned UsePredefines : 1;
+
+ /// \brief Whether we should maintain a detailed record of all macro
+ /// definitions and expansions.
+ unsigned DetailedRecord : 1;
- unsigned DetailedRecord : 1; /// Whether we should maintain a detailed
- /// record of all macro definitions and
- /// expansions.
-
/// The implicit PCH included at the start of the translation unit, or empty.
std::string ImplicitPCHInclude;