Correct NameHashSet::add() return type.
This commit is contained in:
parent
97605a500c
commit
6c7a6c72aa
@ -117,12 +117,12 @@ public:
|
||||
return table_.findForAdd(aKey);
|
||||
}
|
||||
|
||||
void add(Insert &i, const T &value)
|
||||
bool add(Insert &i, const T &value)
|
||||
{
|
||||
return table_.add(i, value);
|
||||
}
|
||||
|
||||
void add(Insert &i, ke::Moveable<T> value)
|
||||
bool add(Insert &i, ke::Moveable<T> value)
|
||||
{
|
||||
return table_.add(i, value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user