Correct NameHashSet::add() return type

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

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