diff options
author | Junichi Uekawa <dancer@netfort.gr.jp> | 2021-05-19 17:32:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 09:32:14 +0100 |
commit | 0b6d97cf5938f6b4885e487c3bd7b02144b1ea56 (patch) | |
tree | 29e428fe6e1ad5bb66373189e8ff677ae2a33d5d /doc | |
parent | 7d1ba6b066cee563e1b52f712146bd2b322ef2ef (diff) | |
download | libfuse-0b6d97cf5938f6b4885e487c3bd7b02144b1ea56.tar.gz |
Define FUSE_USE_VERSION in Doxygen. (#608)
We currently do not pass anything in PREDEFINED and that means
FUSE_USE_VERSION is undefined.
Add that definition so that Doxygen built-in C pre-processor can use
FUSE_USE_VERSION value to find the correct comment to parse.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile index e354127..46ea6cd 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -987,7 +987,7 @@ INCLUDE_FILE_PATTERNS = # undefined via #undef or recursively expanded use the := operator # instead of the = operator. -PREDEFINED = +PREDEFINED = FUSE_USE_VERSION=35 # 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. |