From 1b47b68cc7f8ce27d5813f69f7e91b02de4e43fd Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Sat, 9 May 2015 11:57:49 +0100 Subject: [PATCH] Correct NameHashSet::add() return type. --- public/sm_namehashset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/sm_namehashset.h b/public/sm_namehashset.h index 5b169d078..5e6fbe954 100644 --- a/public/sm_namehashset.h +++ b/public/sm_namehashset.h @@ -120,7 +120,7 @@ public: } template - void add(Insert &i, U &&value) + bool add(Insert &i, U &&value) { return table_.add(i, ke::Forward(value)); }