summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2007-09-25 19:13:15 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2007-09-25 19:13:15 (GMT)
commitf57b7d974fec18d1d8f325c102efd8be5930131d (patch)
treebbe4c051e635c620ab57fcc7ca8279d0427777d8 /src/scanner.l
parent8e4a092e4d51347f8f6c61d87154ee74edb13d20 (diff)
downloadDoxygen-f57b7d974fec18d1d8f325c102efd8be5930131d.zip
Doxygen-f57b7d974fec18d1d8f325c102efd8be5930131d.tar.gz
Doxygen-f57b7d974fec18d1d8f325c102efd8be5930131d.tar.bz2
Release-1.5.3-20070925
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 3396579..8063c6e 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -924,6 +924,9 @@ TYPEDEFPREFIX (("typedef"{BN}+)?)((("volatile"|"const"){BN}+)?)
addType( current );
current->name = yytext;
}
+<CliPropertyType>"["{ID}"]" { // C++/CLI indexed property
+ current->args = yytext;
+ }
<CliPropertyType>"{" {
curlyCount=0;
//printf("event: '%s' '%s'\n",current->type.data(),current->name.data());