diff --git a/public/sm_namehashset.h b/public/sm_namehashset.h index 85edd1cc8..762008d48 100644 --- a/public/sm_namehashset.h +++ b/public/sm_namehashset.h @@ -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 value) + bool add(Insert &i, ke::Moveable value) { return table_.add(i, value); }