summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-12-03 19:06:06 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-12-03 19:06:06 (GMT)
commit80656d68a0838483ea2988adf028e2d85292a109 (patch)
treeb1f19ec5797f1330339f47182f6d27d2b501058d /src/scanner.l
parentdde15c9748053ecb68ba046ebd0fdfe625be0e2e (diff)
downloadDoxygen-80656d68a0838483ea2988adf028e2d85292a109.zip
Doxygen-80656d68a0838483ea2988adf028e2d85292a109.tar.gz
Doxygen-80656d68a0838483ea2988adf028e2d85292a109.tar.bz2
Bug 707266 - C++/CLI indexed property not documented
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 1fe5667..14bf3fc 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -1014,7 +1014,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
current->name = yytext;
}
<CliPropertyType>"[" { // C++/CLI indexed property
- current->name += yytext;
+ current->args = "[";
BEGIN( CliPropertyIndex );
}
<CliPropertyType>"{" {
@@ -1037,10 +1037,10 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
}
<CliPropertyIndex>"]" {
BEGIN( CliPropertyType );
- current->name+=yytext;
+ current->args+=yytext;
}
<CliPropertyIndex>. {
- current->name+=yytext;
+ current->args+=yytext;
}
/*
<FindMembers>{B}*"property"{BN}+ {