1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <timo.roehling@fkie.fraunhofer.de>
Date: Thu, 23 Apr 2020 18:20:09 +0200
Subject: Do not treat warnings as errors with Doxygen
Forwarded: not-needed
---
utils/doxygen/doxyfile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils/doxygen/doxyfile.in b/utils/doxygen/doxyfile.in
index 8573c48..7fffd56 100644
--- a/utils/doxygen/doxyfile.in
+++ b/utils/doxygen/doxyfile.in
@@ -901,7 +901,7 @@ WARN_IF_UNDOC_ENUM_VAL = NO
# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT.
# The default value is: NO.
-WARN_AS_ERROR = YES
+WARN_AS_ERROR = NO
# The WARN_FORMAT tag determines the format of the warning messages that doxygen
# can produce. The string should contain the $file, $line, and $text tags, which
|