summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-01-08 09:13:37 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-01-08 09:13:37 (GMT)
commit304bbce19fe89e89d3c83b34519aadefef5ce6c3 (patch)
treed945464c3d25c1af6186fc4b2eed5707e0198d6e /src
parentb13890351ccd7a5700cb3f2f87690a989a98fe53 (diff)
downloadDoxygen-304bbce19fe89e89d3c83b34519aadefef5ce6c3.zip
Doxygen-304bbce19fe89e89d3c83b34519aadefef5ce6c3.tar.gz
Doxygen-304bbce19fe89e89d3c83b34519aadefef5ce6c3.tar.bz2
issue #6748 1.8.15 regression with C# internal modifier
In the fix for issue #677 / bug 743539 only the Java part, in scanner.l, should have been removed and not the other languages in respect to the word "internal", compare also code.l
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 86a83cb..ee04dd9 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -2438,6 +2438,10 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
{
current->protection = Protected;
}
+ else if ((insideCS || insideD || insidePHP || insideJS) && qstrcmp(yytext,"internal")==0)
+ {
+ current->protection = Package;
+ }
else if (javaLike && qstrcmp(yytext,"private")==0)
{
current->protection = Private;