refactor: unglob std::pair

This commit is contained in:
Tropical
2026-03-06 20:37:41 -06:00
parent e918160231
commit e506b8fe7a
16 changed files with 108 additions and 108 deletions

View File

@@ -21,8 +21,8 @@ UINT WstringLookup::lookup(std::wstring str)
{
if (str2int.find(str) == str2int.end())
{
pair<std::wstring,UINT> p =
pair<std::wstring,UINT>(str, numIDs);
std::pair<std::wstring,UINT> p =
std::pair<std::wstring,UINT>(str, numIDs);
str2int.insert( p );
int2str.push_back( str );