hotspot/src/share/vm/utilities/bitMap.cpp
changeset 46704 211b3f6b75ef
parent 42591 821346dfd80d
child 46745 f7b9bb98bb72
--- a/hotspot/src/share/vm/utilities/bitMap.cpp	Fri Jul 21 16:37:01 2017 -0400
+++ b/hotspot/src/share/vm/utilities/bitMap.cpp	Fri Jul 21 21:01:59 2017 -0400
@@ -48,10 +48,10 @@
 class CHeapBitMapAllocator : StackObj {
  public:
   bm_word_t* allocate(size_t size_in_words) const {
-    return ArrayAllocator<bm_word_t, mtInternal>::allocate(size_in_words);
+    return ArrayAllocator<bm_word_t>::allocate(size_in_words, mtInternal);
   }
   void free(bm_word_t* map, idx_t size_in_words) const {
-    ArrayAllocator<bm_word_t, mtInternal>::free(map, size_in_words);
+    ArrayAllocator<bm_word_t>::free(map, size_in_words);
   }
 };