Commit 1028feb8 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge branch 'master' of github.com:doxygen/doxygen

parents 2da9dcc7 436efb21
...@@ -1355,12 +1355,19 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) ...@@ -1355,12 +1355,19 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
if (!insidePHP) if (!insidePHP)
{ {
current->type += " abstract "; current->type += " abstract ";
if (!insideJava)
{
current->virt = Pure; current->virt = Pure;
} }
else else
{ {
current->spec|=Entry::Abstract; current->spec|=Entry::Abstract;
} }
}
else
{
current->spec|=Entry::Abstract;
}
lineCount(); lineCount();
} }
<FindMembers>{B}*"inline"{BN}+ { current->spec|=Entry::Inline; <FindMembers>{B}*"inline"{BN}+ { current->spec|=Entry::Inline;
......
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