summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorCharles.Lee <cheoljoo@gmail.com>2019-10-31 14:45:17 (GMT)
committerCharles.Lee <cheoljoo@gmail.com>2019-10-31 14:45:17 (GMT)
commit6b2def9ad52da8709ce9ffa91c792009f1902e41 (patch)
tree84c69887dd34da7130e40a836af743ed3b36dad5 /src/code.l
parent8cd3470a3ad064dbb75f3d2fc6af5f69726040f3 (diff)
downloadDoxygen-6b2def9ad52da8709ce9ffa91c792009f1902e41.zip
Doxygen-6b2def9ad52da8709ce9ffa91c792009f1902e41.tar.gz
Doxygen-6b2def9ad52da8709ce9ffa91c792009f1902e41.tar.bz2
bug fix of g_bracketCount in case of if( myobject.getPair() )
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code.l b/src/code.l
index cbcb560..10468f3 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2775,7 +2775,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
g_name.resize(0);
}
g_type.resize(0);
- g_bracketCount=0;
+ // g_bracketCount=0; // ex. when we parse this syntax " if( myobject.getPair()) " , we have problem that g_braceCount has wrong value as zero at "getPair(".
if (g_memCallContext==Body)
{
BEGIN(FuncCall);