updated to clean up compiler issues with how functions were used from basis namespace;
[feisty_meow.git] / nucleus / library / structures / set.h
index 3215080f66c9465ad53a4d93b811f0c337cb6c0b..48e7a74a82d7744cbe926d4b370c2375646a8f49 100644 (file)
@@ -232,7 +232,7 @@ template <class contents>
 bool set<contents>::add(const contents &to_add)
 {
   if (member(to_add)) return false; 
-  concatenate(to_add);
+  this->concatenate(to_add);
   return true;
 }