diff options
| author | Malcolm Parsons <malcolm.parsons@gmail.com> | 2017-01-19 09:27:45 +0000 |
|---|---|---|
| committer | Malcolm Parsons <malcolm.parsons@gmail.com> | 2017-01-19 09:27:45 +0000 |
| commit | 207a68985be5cfd592c52fcbc4a8b9cde522aac2 (patch) | |
| tree | 06dccc02d4546945f71cc2f7f455ccad29106206 /clang/docs | |
| parent | ddb80aee7e59de3e7547989d41c86728bd68acf3 (diff) | |
| download | bcm5719-llvm-207a68985be5cfd592c52fcbc4a8b9cde522aac2.tar.gz bcm5719-llvm-207a68985be5cfd592c52fcbc4a8b9cde522aac2.zip | |
[docs] Tell Doxygen to expand LLVM_ALIGNAS to nothing
Summary:
Docs for clang::Decl and clang::TemplateSpecializationType have
not been generated since LLVM_ALIGNAS was added to them.
Tell Doxygen to expand LLVM_ALIGNAS to nothing as described at
https://www.stack.nl/~dimitri/doxygen/manual/preprocessing.html
Reviewers: aaron.ballman, klimek, alexfh
Subscribers: ioeric, cfe-commits
Differential Revision: https://reviews.llvm.org/D28850
llvm-svn: 292477
Diffstat (limited to 'clang/docs')
| -rw-r--r-- | clang/docs/doxygen.cfg.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/docs/doxygen.cfg.in b/clang/docs/doxygen.cfg.in index c96ab49ba0f..ef96605ed1c 100644 --- a/clang/docs/doxygen.cfg.in +++ b/clang/docs/doxygen.cfg.in @@ -1885,7 +1885,7 @@ ENABLE_PREPROCESSING = YES # The default value is: NO. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -MACRO_EXPANSION = NO +MACRO_EXPANSION = YES # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then # the macro expansion is limited to the macros specified with the PREDEFINED and @@ -1893,7 +1893,7 @@ MACRO_EXPANSION = NO # The default value is: NO. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -EXPAND_ONLY_PREDEF = NO +EXPAND_ONLY_PREDEF = YES # If the SEARCH_INCLUDES tag is set to YES the includes files in the # INCLUDE_PATH will be searched if a #include is found. @@ -1925,7 +1925,7 @@ INCLUDE_FILE_PATTERNS = # recursively expanded use the := operator instead of the = operator. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -PREDEFINED = +PREDEFINED = LLVM_ALIGNAS(x)= # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this # tag can be used to specify a list of macro names that should be expanded. The |

