Commit 689f4f27 authored by unknown's avatar unknown

removed unused and illegal print method

parent 67570b8b
...@@ -148,26 +148,6 @@ public: ...@@ -148,26 +148,6 @@ public:
void releaseList(Uint32 n, Uint32 first, Uint32 last); void releaseList(Uint32 n, Uint32 first, Uint32 last);
//private: //private:
/**
* Print
* (Run operator NdbOut<< on every element)
*/
void print(NdbOut & out){
#ifdef VM_TRACE
out << "FirstFree = " << firstFree << endl;
for(Uint32 i = 0; i<size; i++){
#ifdef ARRAY_GUARD
if(BitmaskImpl::get(bitmaskSz, theAllocatedBitmask, i))
out << "A ";
else
out << "F ";
#endif
out << i << ": " << theArray[i] << " ";
}
out << endl;
#endif
}
#ifdef DEBUG #ifdef DEBUG
Uint32 getNoOfFree2() const { Uint32 getNoOfFree2() const {
Uint32 c2 = size; Uint32 c2 = size;
......
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