Correct NameHashSet::add() return type.

This commit is contained in:
Asher Baker 2015-05-09 11:57:49 +01:00
parent f7c6fc9d1f
commit 1b47b68cc7

View File

@ -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));
}