Merge pull request #2865 from nburles/fix_switch_missing_default_case
[C++ codegen] Add default cases to AltBlock and OptionalBlock
This commit is contained in:
commit
630e4c0b7d
|
@ -710,6 +710,8 @@ switch (getInterpreter\<atn::ParserATNSimulator>()->adaptivePredict(_input, <cho
|
|||
break;
|
||||
\}
|
||||
}; separator="\n">
|
||||
default:
|
||||
break;
|
||||
}
|
||||
>>
|
||||
|
||||
|
@ -724,6 +726,8 @@ switch (getInterpreter\<atn::ParserATNSimulator>()->adaptivePredict(_input, <cho
|
|||
break;
|
||||
\}
|
||||
}; separator = "\n">
|
||||
default:
|
||||
break;
|
||||
}
|
||||
>>
|
||||
|
||||
|
|
Loading…
Reference in New Issue