diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/HPMHookGen/doxygen.conf | 3 | ||||
-rwxr-xr-x | tools/constdbconverter.pl | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/tools/HPMHookGen/doxygen.conf b/tools/HPMHookGen/doxygen.conf index eeaa4d0e3..ec55967b1 100644 --- a/tools/HPMHookGen/doxygen.conf +++ b/tools/HPMHookGen/doxygen.conf @@ -269,8 +269,7 @@ INCLUDE_PATH = ../../src \ ../../3rdparty INCLUDE_FILE_PATTERNS = PREDEFINED = __attribute__(x)= \ - HPMHOOKGEN \ - PCRE_SUPPORT + HPMHOOKGEN EXPAND_AS_DEFINED = SKIP_FUNCTION_MACROS = NO #--------------------------------------------------------------------------- diff --git a/tools/constdbconverter.pl b/tools/constdbconverter.pl index 31e84abef..b534eba70 100755 --- a/tools/constdbconverter.pl +++ b/tools/constdbconverter.pl @@ -24,7 +24,7 @@ use strict; use warnings; -sub parse_questdb (@) { +sub parse_constdb (@) { my @input = @_; foreach (@input) { chomp $_; @@ -109,6 +109,6 @@ constants_db: { EOF -parse_questdb(<>); +parse_constdb(<>); print "}\n"; |