Merge pull request #243 from Arkshine/fix/namehashset-add-return
Correct NameHashSet::add() return type
This commit is contained in:
commit
af7a6e3c87
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user