replace NULL with nullptr

This commit is contained in:
Arne Morten Kvarving 2021-08-11 14:46:23 +02:00
parent 8b539a46fc
commit a76cf5cdb3

View File

@ -839,7 +839,7 @@ std::unique_ptr<RawKeyword> tryParseKeyword( ParserState& parserState, const Par
parserKeyword = parser.getParserKeywordFromDeckName(rawKeyword->getKeywordName());
if (deck_name == "UDT") {
skipUDT(parserState, parser);
return NULL;
return nullptr;
}
parserState.lastSizeType = parserKeyword->getSizeType();
parserState.lastKeyWord = deck_name;