Commit 7bee058b authored by unknown's avatar unknown

Bitmask.hpp:

  compile fix for gcc-3.4.x


ndb/include/util/Bitmask.hpp:
  compile fix for gcc-3.4.x
parent 2ba4836c
...@@ -762,7 +762,7 @@ BitmaskPOD<size>::overlaps(BitmaskPOD<size> that) ...@@ -762,7 +762,7 @@ BitmaskPOD<size>::overlaps(BitmaskPOD<size> that)
template <unsigned size> template <unsigned size>
class Bitmask : public BitmaskPOD<size> { class Bitmask : public BitmaskPOD<size> {
public: public:
Bitmask() { clear();} Bitmask() { this->clear();}
}; };
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment