hotspot/src/share/vm/utilities/bitMap.hpp
changeset 18092 202cf28d5b82
parent 16685 41c34debcde0
child 22234 da823d78ad65
--- a/hotspot/src/share/vm/utilities/bitMap.hpp	Tue Jun 18 12:31:07 2013 -0700
+++ b/hotspot/src/share/vm/utilities/bitMap.hpp	Tue Jun 18 22:45:32 2013 +0200
@@ -48,6 +48,7 @@
   } RangeSizeHint;
 
  private:
+  ArrayAllocator<bm_word_t, mtInternal> _map_allocator;
   bm_word_t* _map;     // First word in bitmap
   idx_t      _size;    // Size of bitmap (in bits)
 
@@ -113,7 +114,7 @@
  public:
 
   // Constructs a bitmap with no map, and size 0.
-  BitMap() : _map(NULL), _size(0) {}
+  BitMap() : _map(NULL), _size(0), _map_allocator(false) {}
 
   // Constructs a bitmap with the given map and size.
   BitMap(bm_word_t* map, idx_t size_in_bits);