8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 06:43:03 +01:00

Correct on-stack constructor for SparseBitmap (discussed with Nickolay)

This commit is contained in:
hvlad 2004-10-05 07:03:26 +00:00
parent 16a86758e6
commit 4591207542

View File

@ -24,7 +24,7 @@
* Contributor(s): ______________________________________. * Contributor(s): ______________________________________.
* *
* *
* $Id: sparse_bitmap.h,v 1.5 2004-10-04 08:14:44 robocop Exp $ * $Id: sparse_bitmap.h,v 1.6 2004-10-05 07:03:26 hvlad Exp $
* *
*/ */
@ -60,7 +60,7 @@ class SparseBitmap : public AutoStorage {
public: public:
// Default constructor, stack placement // Default constructor, stack placement
SparseBitmap() : SparseBitmap() :
singular(false), singular_value(0), tree(&getPool()) singular(false), singular_value(0), tree(&getPool()), defaultAccessor(this)
{ } { }
// Pooled constructor // Pooled constructor
@ -764,4 +764,3 @@ SparseBitmap<T, InternalTypes>::bit_and(
} // namespace Firebird } // namespace Firebird
#endif #endif