Skip to content

Commit fc0884a

Browse files
committed
Incorrect warning regarding SQLITE3 seyyttings
When we have in the settings files settings that are not enabled in the current doxygen version we get for the CLANG part ``` warning: Tag 'CLANG_DATABASE_PATH' at line 391 of file 'Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. ``` though for the SQLITE3 part we get: ``` warning: ignoring unsupported tag 'GENERATE_SQLITE3' at line 392, file Doxyfile ``` this is due to the fact that the info of the group was closed after the complete group and not directly after the info.
1 parent 7664493 commit fc0884a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/configgen.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -357,12 +357,12 @@ def parseGroups(node):
357357
print(" cfg->addInfo(\"%s\",\"%s\");" % (name, doc))
358358
print("%s%s" % (" //-----------------------------------------",
359359
"----------------------------------"))
360+
if len(setting) > 0:
361+
print("#endif")
360362
print("")
361363
for n in node.childNodes:
362364
if n.nodeType == Node.ELEMENT_NODE:
363365
parseOption(n)
364-
if len(setting) > 0:
365-
print("#endif")
366366

367367
def parseGroupMapEnums(node):
368368
def escape(value):

0 commit comments

Comments
 (0)