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

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

Bug 719489 - Label "abstract" instead of "pure virtual" for Java language
parents 182bd7cd 30535da9
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -1355,12 +1355,19 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
                                          if (!insidePHP) 
					  {
					    current->type += " abstract ";
					    if (!insideJava)
					    {
                                              current->virt = Pure;
					    }
					    else
					    {
                                              current->spec|=Entry::Abstract;
					    }
					  }
					  else
					  {
					    current->spec|=Entry::Abstract;
					  }
					  lineCount();
					}
<FindMembers>{B}*"inline"{BN}+		{ current->spec|=Entry::Inline;