2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-05-01 17:39:39 +03:00

Correct NameHashSet::add() return type

This commit is contained in:
Arkshine 2015-05-15 10:45:08 +02:00
parent c5f6e26802
commit 6620aa97a8

@ -120,7 +120,7 @@ public:
}
template <typename U>
void add(Insert &i, U &&value)
bool add(Insert &i, U &&value)
{
return table_.add(i, ke::Forward<U>(value));
}