Commit f4f3e381 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 729017 - function object in member initializer causes documentation loss

parent b944c2af
...@@ -682,7 +682,6 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) ...@@ -682,7 +682,6 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
%x SkipCurlyBlock %x SkipCurlyBlock
%x SkipRoundBlock %x SkipRoundBlock
%x Sharp %x Sharp
%x SkipSharp
%x SkipRound %x SkipRound
%x SkipSquare %x SkipSquare
%x SkipRemainder %x SkipRemainder
...@@ -5353,13 +5352,13 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) ...@@ -5353,13 +5352,13 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
BEGIN( ClassVar ); BEGIN( ClassVar );
} }
} }
<AlignAs>"(" { roundCount=1; <AlignAs>"(" { roundCount=0;
BEGIN( AlignAsEnd ); BEGIN( AlignAsEnd );
} }
<AlignAs>\n { lineCount(); } <AlignAs>\n { lineCount(); }
<AlignAs>. <AlignAs>.
<AlignAsEnd>"(" { roundCount++; } <AlignAsEnd>"(" { roundCount++; }
<AlignAsEnd>")" { if (--roundCount<=0) <AlignAsEnd>")" { if (--roundCount<0)
{ {
BEGIN( lastAlignAsContext ); BEGIN( lastAlignAsContext );
} }
...@@ -5843,12 +5842,8 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) ...@@ -5843,12 +5842,8 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
<Specialization>. { <Specialization>. {
*specName += *yytext; *specName += *yytext;
} }
<SkipSharp>"<" { ++sharpCount; }
<SkipSharp>">" { if (--sharpCount<=0)
BEGIN ( lastSkipSharpContext );
}
<SkipRound>"(" { ++roundCount; } <SkipRound>"(" { ++roundCount; }
<SkipRound>")" { if (--roundCount<=0) <SkipRound>")" { if (--roundCount<0)
BEGIN ( lastSkipRoundContext ); BEGIN ( lastSkipRoundContext );
} }
<SkipRound>\" { <SkipRound>\" {
......
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