Replace NULL with nullptr (#1321)

This commit is contained in:
Sylvie
2024-02-29 15:06:33 -05:00
committed by GitHub
parent eff8c324c8
commit 043db49676
27 changed files with 252 additions and 254 deletions

View File

@@ -40,9 +40,9 @@ std::stack<Charmap *> charmapStack;
void charmap_New(char const *name, char const *baseName)
{
Charmap *base = NULL;
Charmap *base = nullptr;
if (baseName != NULL) {
if (baseName != nullptr) {
auto search = charmaps.find(baseName);
if (search == charmaps.end())