[cfe-commits] r140191 - /cfe/trunk/include/clang/Lex/PreprocessingRecord.h
Argyrios Kyrtzidis
akyrtzi at gmail.com
Tue Sep 20 15:14:52 PDT 2011
Author: akirtzidis
Date: Tue Sep 20 17:14:52 2011
New Revision: 140191
URL: http://llvm.org/viewvc/llvm-project?rev=140191&view=rev
Log:
Remove PreprocessingDirectiveKind since it's not necessary.
Modified:
cfe/trunk/include/clang/Lex/PreprocessingRecord.h
Modified: cfe/trunk/include/clang/Lex/PreprocessingRecord.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Lex/PreprocessingRecord.h?rev=140191&r1=140190&r2=140191&view=diff
==============================================================================
--- cfe/trunk/include/clang/Lex/PreprocessingRecord.h (original)
+++ cfe/trunk/include/clang/Lex/PreprocessingRecord.h Tue Sep 20 17:14:52 2011
@@ -50,11 +50,8 @@
/// \brief A macro expansion.
MacroExpansionKind,
- /// \brief A preprocessing directive whose kind is not specified.
- ///
- /// This kind will be used for any preprocessing directive that does not
- /// have a more specific kind within the \c DirectiveKind enumeration.
- PreprocessingDirectiveKind,
+ /// \defgroup Preprocessing directives
+ /// @{
/// \brief A macro definition.
MacroDefinitionKind,
@@ -63,7 +60,9 @@
/// #import, or \c #include_next.
InclusionDirectiveKind,
- FirstPreprocessingDirective = PreprocessingDirectiveKind,
+ /// @}
+
+ FirstPreprocessingDirective = MacroDefinitionKind,
LastPreprocessingDirective = InclusionDirectiveKind
};
More information about the cfe-commits
mailing list