< prev index next >

src/hotspot/share/gc/z/zArray.hpp

Print this page

        

@@ -25,11 +25,11 @@
 #define SHARE_GC_Z_ZARRAY_HPP
 
 #include "memory/allocation.hpp"
 
 template <typename T>
-class ZArray VALUE_OBJ_CLASS_SPEC {
+class ZArray {
 private:
   static const size_t initial_capacity = 32;
 
   T*     _array;
   size_t _size;
< prev index next >