Commit 1bfacc3b authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 721462 - Parsing problem with C++11 empty initializer lists

parent 3337add3
......@@ -5115,6 +5115,11 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
lastCContext = YY_START;
BEGIN(SkipCxxComment);
}
<SkipInits>"(" {
roundCount=0;
lastSkipRoundContext=YY_START;
BEGIN(SkipRound);
}
<SkipInits>\" {
lastStringContext=YY_START;
BEGIN( SkipString );
......
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