diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-10-16 11:02:49 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-10-16 11:02:49 -0400 |
commit | 85accdf00a49dc64894383292026dc538f4b2042 (patch) | |
tree | c627de0080b586ac675879f094aa80c6a8717c35 /Doxyfile.in | |
parent | 2329f8a28cc8c7576f2bcbefeefed530625aff4e (diff) | |
download | tor-85accdf00a49dc64894383292026dc538f4b2042.tar.gz tor-85accdf00a49dc64894383292026dc538f4b2042.zip |
Tell doxygen not to pay attention to __attribute__.
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 5767b61043..eedb6a4334 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -2107,7 +2107,9 @@ INCLUDE_FILE_PATTERNS = # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. PREDEFINED = "MOCK_IMPL(a,b,c)=a b c" \ - "MOCK_DECL(a,b,c)=a b c" + "MOCK_DECL(a,b,c)=a b c" \ + __attribute__(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 |