Don't use nullptr keyword yet.

This commit is contained in:
caheckman 2019-09-20 16:32:16 -04:00
parent efb6148b6c
commit 60e48ee1c3
2 changed files with 7 additions and 7 deletions

View file

@ -1616,7 +1616,7 @@ void SleighCompile::buildPatterns(void)
{
if (root == 0) {
reportError(nullptr, "No patterns to match.");
reportError((const Location *)0, "No patterns to match.");
return;
}
ostringstream msg;