indent fix

This commit is contained in:
Nic30 2016-07-07 12:43:03 +02:00
parent 027dde5e3e
commit 1ceb6a45dd
4 changed files with 15 additions and 18 deletions

View File

@ -392,9 +392,7 @@ ATN ATNDeserializer::deserialize(const std::vector<uint16_t>& input) {
data2 = -1; data2 = -1;
} }
auto la = lexerActionFactory(actionType, data1, data2); atn.lexerActions[i] = lexerActionFactory(actionType, data1, data2);
assert(la != nullptr);
atn.lexerActions[i] = la;
} }
} else { } else {
// for compatibility with older serialized ATNs, convert the old // for compatibility with older serialized ATNs, convert the old

View File

@ -33,7 +33,6 @@
#include "atn/LexerAction.h" #include "atn/LexerAction.h"
#include "atn/LexerActionType.h" #include "atn/LexerActionType.h"
#include <memory>
namespace antlr4 { namespace antlr4 {
namespace atn { namespace atn {