diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-07 22:20:35 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-07 22:20:35 (GMT) |
commit | 436efb218557f74deb45705c0c8153265d502022 (patch) | |
tree | 51f8ef3c05f854ddeef272c5eef822f4b6784353 /src/scanner.l | |
parent | 182bd7cda2842cac622bf9ead4fd4a59f485d910 (diff) | |
parent | 30535da9d0d7d5f71a2faaca30641361a888358b (diff) | |
download | Doxygen-436efb218557f74deb45705c0c8153265d502022.zip Doxygen-436efb218557f74deb45705c0c8153265d502022.tar.gz Doxygen-436efb218557f74deb45705c0c8153265d502022.tar.bz2 |
Merge pull request #64 from albert-github/feature/bug_719489
Bug 719489 - Label "abstract" instead of "pure virtual" for Java language
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l index 6160158..0807aaa 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -1355,7 +1355,14 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) if (!insidePHP) { current->type += " abstract "; - current->virt = Pure; + if (!insideJava) + { + current->virt = Pure; + } + else + { + current->spec|=Entry::Abstract; + } } else { |