]> www.ginac.de Git - cln.git/blobdiff - src/base/hash/cl_hashuniq.h
Fix compilation with clang.
[cln.git] / src / base / hash / cl_hashuniq.h
index 25fe4d27460473406667bad9f4424565887a6cad..b19b5dd732c146abe10a41a85b4479e22519eef0 100644 (file)
@@ -115,7 +115,7 @@ private:
         if (this->_freelist < -1)
             return;
         // Can we make room?
-        if (_garcol_fun(this))
+        if (this->_garcol_fun(this))
             if (this->_freelist < -1)
                 return;
         // No! Have to grow the hash table.
@@ -123,7 +123,7 @@ private:
       #else
         // workaround Sun C++ 4.1 inline function compiler bug
         if (this->_freelist >= -1) {
-            if (!_garcol_fun(this) || (this->_freelist >= -1))
+            if (!this->_garcol_fun(this) || (this->_freelist >= -1))
                 grow();
         }
       #endif