Codechange: Replace NULL with nullptr in squirrel interface.

This commit is contained in:
peter1138
2019-04-11 22:08:56 +01:00
committed by PeterN
parent c0836bccef
commit 5bd2b15e86
65 changed files with 126 additions and 126 deletions

View File

@@ -25,6 +25,6 @@ namespace SQConvert {
if (sq_gettype(vm, index) == OT_STRING) {
return new RawText(GetParam(ForceType<const char *>(), vm, index, ptr));
}
return NULL;
return nullptr;
}
} // namespace SQConvert