diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-09-25 19:13:15 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-09-25 19:13:15 (GMT) |
commit | d3461a1c31f008345d784dc3e819047bc5265c30 (patch) | |
tree | bbe4c051e635c620ab57fcc7ca8279d0427777d8 /src/scanner.l | |
parent | 6bedd287437d2091820129533cb44f56609d0991 (diff) | |
download | Doxygen-d3461a1c31f008345d784dc3e819047bc5265c30.zip Doxygen-d3461a1c31f008345d784dc3e819047bc5265c30.tar.gz Doxygen-d3461a1c31f008345d784dc3e819047bc5265c30.tar.bz2 |
Release-1.5.3-20070925
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 3 |
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()); |