From: Richard Kreckel Date: Wed, 2 Feb 2011 22:44:15 +0000 (+0100) Subject: Fix yet another dependent base C++ language issue. X-Git-Tag: cln_1-3-2~4 X-Git-Url: https://www.ginac.de/CLN/cln.git//cln.git?a=commitdiff_plain;h=93c3e3c856be7d4306f81eaf909ae97c44a936c5;p=cln.git Fix yet another dependent base C++ language issue. --- diff --git a/src/base/hash/cl_hashset.h b/src/base/hash/cl_hashset.h index bff639c..bdf5e52 100644 --- a/src/base/hash/cl_hashset.h +++ b/src/base/hash/cl_hashset.h @@ -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