libsupport: Fix build on gcc 11.2 #24

Merged
kallisti5 merged 1 commits from fix-gcc11 into master 2023-03-31 22:37:51 -05:00

View File

@ -64,7 +64,7 @@ KeyMap<KEY, TYPE>::ValueFor(KEY k, bool* found) const
}
if (i == fMap.end())
return NULL;
return 0;
return i->second;
}