summaryrefslogtreecommitdiff
path: root/ndb/src/kernel/vm/ArrayPool.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ndb/src/kernel/vm/ArrayPool.hpp')
-rw-r--r--ndb/src/kernel/vm/ArrayPool.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ndb/src/kernel/vm/ArrayPool.hpp b/ndb/src/kernel/vm/ArrayPool.hpp
index 4fc6bb97f73..c06f48f2e8e 100644
--- a/ndb/src/kernel/vm/ArrayPool.hpp
+++ b/ndb/src/kernel/vm/ArrayPool.hpp
@@ -153,6 +153,7 @@ public:
* (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
@@ -164,6 +165,7 @@ public:
out << i << ": " << theArray[i] << " ";
}
out << endl;
+#endif
}
#ifdef DEBUG