Further fixes for NO_ASSERT builds.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-04-22 12:17:47 +02:00
parent 479a240c6f
commit 43e612122c
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ namespace Arbutils::Collections {
}
return find->second;
#else
return _map[key];
return _map.at(key);
#endif
}