]> www.ginac.de Git - cln.git/commitdiff
Fix yet another dependent base C++ language issue.
authorRichard Kreckel <kreckel@ginac.de>
Wed, 2 Feb 2011 22:44:15 +0000 (23:44 +0100)
committerRichard Kreckel <kreckel@ginac.de>
Wed, 2 Feb 2011 22:44:15 +0000 (23:44 +0100)
src/base/hash/cl_hashset.h

index bff639c9a35dd3b20bcf0fa5750b4d14c7747b6f..bdf5e5277713bf6f8dce181b3f3fd0158dbb713c 100644 (file)
@@ -104,7 +104,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.
@@ -112,7 +112,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