Commit 436efb21 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #64 from albert-github/feature/bug_719489

Bug 719489 - Label "abstract" instead of "pure virtual" for Java language
parents 182bd7cd 30535da9
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment