diff options
author | Haru <haru@dotalux.com> | 2015-01-22 00:41:56 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-01-22 00:41:56 +0100 |
commit | e1b9abba3ae76aa7a6c310abdf485cd34ab4057d (patch) | |
tree | 9a0711a3cda48c4b64909bdfd8acab841df81ee6 | |
parent | 40f73981d9bacfc9e7b032790a5c35e32f68ac2a (diff) | |
download | hercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.tar.gz hercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.tar.bz2 hercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.tar.xz hercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.zip |
HPMHookGen compatibility fix for doxygen 1.8.9.x
Signed-off-by: Haru <haru@dotalux.com>
-rwxr-xr-x | tools/HPMHookGen/HPMHookGen.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/HPMHookGen/HPMHookGen.pl b/tools/HPMHookGen/HPMHookGen.pl index c11293d93..03b32394c 100755 --- a/tools/HPMHookGen/HPMHookGen.pl +++ b/tools/HPMHookGen/HPMHookGen.pl @@ -24,7 +24,7 @@ sub parse($$) { $p =~ s/^.*?\)\((.*)\).*$/$1/; # Clean up extra parentheses )(around the arglist) # Retrieve return type - unless ($d =~ /^(.+)\(\*\s*[a-zA-Z0-9_]+_interface::([^\)]+)\s*\)\(.*\)$/) { + unless ($d =~ /^(.+)\(\*\s*[a-zA-Z0-9_]+_interface::([^\)]+)\s*\)\s*\(.*\)$/) { print "Error: unable to parse '$d'\n"; return {}; } |