diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-09-20 22:14:52 +0000 | 
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-09-20 22:14:52 +0000 | 
| commit | b89327ec84443df78b51ce83b3ae2d591d02448f (patch) | |
| tree | b6f4e02359757802389c413b6015f7e83910c289 | |
| parent | 0d48fb89c023a98e991e29c01347ea588a38a790 (diff) | |
| download | bcm5719-llvm-b89327ec84443df78b51ce83b3ae2d591d02448f.tar.gz bcm5719-llvm-b89327ec84443df78b51ce83b3ae2d591d02448f.zip  | |
Remove PreprocessingDirectiveKind since it's not necessary.
llvm-svn: 140191
| -rw-r--r-- | clang/include/clang/Lex/PreprocessingRecord.h | 11 | 
1 files changed, 5 insertions, 6 deletions
diff --git a/clang/include/clang/Lex/PreprocessingRecord.h b/clang/include/clang/Lex/PreprocessingRecord.h index c76224d1244..53da19e6c29 100644 --- a/clang/include/clang/Lex/PreprocessingRecord.h +++ b/clang/include/clang/Lex/PreprocessingRecord.h @@ -50,11 +50,8 @@ namespace clang {        /// \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 @@ namespace clang {        /// #import, or \c #include_next.        InclusionDirectiveKind, -      FirstPreprocessingDirective = PreprocessingDirectiveKind, +      /// @} + +      FirstPreprocessingDirective = MacroDefinitionKind,        LastPreprocessingDirective = InclusionDirectiveKind      };  | 

