summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-09-20 22:14:52 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-09-20 22:14:52 +0000
commit5555bf78e0a76337f7149669723bf4f3f9ddbc1c (patch)
treee5d98af554a4d617a10b281a13bb2d83926e2e5b /include
parentde4e0a8e57e643bbe78ad37ad6023c45a8a9f7e2 (diff)
downloadclang-5555bf78e0a76337f7149669723bf4f3f9ddbc1c.tar.gz
Remove PreprocessingDirectiveKind since it's not necessary.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/clang/Lex/PreprocessingRecord.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/clang/Lex/PreprocessingRecord.h b/include/clang/Lex/PreprocessingRecord.h
index c76224d124..53da19e6c2 100644
--- a/include/clang/Lex/PreprocessingRecord.h
+++ b/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
};