mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Third parameter of std::remove prob needs to be nullptr
This commit is contained in:
parent
ab4d54cb70
commit
1b161fad1d
@ -681,7 +681,7 @@ void TIntermediate::checkCallGraphBodies(TInfoSink& infoSink, bool keepUncalled)
|
||||
if (! reachable[f])
|
||||
functionSequence[f] = NULL;
|
||||
}
|
||||
functionSequence.erase(std::remove(functionSequence.begin(), functionSequence.end(), NULL), functionSequence.end());
|
||||
functionSequence.erase(std::remove(functionSequence.begin(), functionSequence.end(), nullptr), functionSequence.end());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user