summaryrefslogtreecommitdiffstats
path: root/src/declinfo.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-06-18 16:12:02 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-06-18 16:12:02 (GMT)
commitcb417a1f59c3bf956677a59ce94cf13b4010f3c4 (patch)
tree87cc9a7540b6f305b72a7d2e3ecb7e16762b3488 /src/declinfo.l
parent24106371e24a41d86a7a50de14d9741e591e95e3 (diff)
downloadDoxygen-cb417a1f59c3bf956677a59ce94cf13b4010f3c4.zip
Doxygen-cb417a1f59c3bf956677a59ce94cf13b4010f3c4.tar.gz
Doxygen-cb417a1f59c3bf956677a59ce94cf13b4010f3c4.tar.bz2
Release-1.1.4-20000618
Diffstat (limited to 'src/declinfo.l')
-rw-r--r--src/declinfo.l5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/declinfo.l b/src/declinfo.l
index fe2fed0..a6cafc4 100644
--- a/src/declinfo.l
+++ b/src/declinfo.l
@@ -136,9 +136,10 @@ ID ([a-z_A-Z][a-z_A-Z0-9]*)|(@[0-9]+)
<Start>{B}+ {
addType();
}
-<Start>{B}*"("{B}*"*" {
+<Start>{B}*"("({ID}"::")*{B}*"*" {
addType();
- type+="(*";
+ QCString text=yytext;
+ type+=text.stripWhiteSpace();
}
<Start>{B}*")" {
type+=")";