@@ -1295,15 +1295,6 @@ HTML_COLORSTYLE_SAT = 100
12951295
12961296HTML_COLORSTYLE_GAMMA = 80
12971297
1298- # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1299- # page will contain the date and time when the page was generated. Setting this
1300- # to YES can help to show when doxygen was last run and thus if the
1301- # documentation is up to date.
1302- # The default value is: NO.
1303- # This tag requires that the tag GENERATE_HTML is set to YES.
1304-
1305- HTML_TIMESTAMP = NO
1306-
13071298# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
13081299# documentation will contain a main index with vertical navigation menus that
13091300# are dynamically created via JavaScript. If disabled, the navigation index will
@@ -1950,14 +1941,6 @@ LATEX_HIDE_INDICES = NO
19501941
19511942LATEX_BIB_STYLE = plain
19521943
1953- # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
1954- # page will contain the date and time when the page was generated. Setting this
1955- # to NO can help when comparing the output of multiple runs.
1956- # The default value is: NO.
1957- # This tag requires that the tag GENERATE_LATEX is set to YES.
1958-
1959- LATEX_TIMESTAMP = NO
1960-
19611944# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
19621945# path from which the emoji images will be read. If a relative path is entered,
19631946# it will be relative to the LATEX_OUTPUT directory. If left blank the
@@ -2587,3 +2570,19 @@ GENERATE_LEGEND = YES
25872570# The default value is: YES.
25882571
25892572DOT_CLEANUP = YES
2573+
2574+ # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
2575+ # clang parser for more accurate parsing at the cost of reduced performance.
2576+ # This can be particularly helpful with template rich C++ code for which
2577+ # doxygen's built-in parser lacks the necessary type information.
2578+
2579+ CLANG_ASSISTED_PARSING = NO
2580+
2581+ # If clang assisted parsing is enabled you can provide the clang parser with
2582+ # the path to the directory containing a file called compile_commands.json.
2583+ # This file is the compilation database containing the options used when the
2584+ # source files were built. This is equivalent to specifying the -p option to a
2585+ # clang tool, such as clang-check. These options will then be passed to the
2586+ # parser. Any options specified with CLANG_OPTIONS will be added as well.
2587+
2588+ CLANG_DATABASE_PATH = _build
0 commit comments