< prev index next >

src/hotspot/share/gc/shared/oopStorage.hpp

Print this page

        

@@ -173,11 +173,11 @@
   // version 12 rejects it.
 NOT_AIX( private: )
   class Block;                  // Forward decl; defined in .inline.hpp file.
   class BlockList;              // Forward decl for BlockEntry friend decl.
 
-  class BlockEntry VALUE_OBJ_CLASS_SPEC {
+  class BlockEntry {
     friend class BlockList;
 
     // Members are mutable, and we deal exclusively with pointers to
     // const, to make const blocks easier to use; a block being const
     // doesn't prevent modifying its list state.

@@ -191,11 +191,11 @@
   public:
     BlockEntry();
     ~BlockEntry();
   };
 
-  class BlockList VALUE_OBJ_CLASS_SPEC {
+  class BlockList {
     const Block* _head;
     const Block* _tail;
     const BlockEntry& (*_get_entry)(const Block& block);
 
     // Noncopyable.
< prev index next >