< prev index next >

src/hotspot/share/utilities/constantTag.hpp

Print this page

        

@@ -46,11 +46,11 @@
   JVM_CONSTANT_DynamicInError           = 106,  // Error tag due to resolution error
   JVM_CONSTANT_InternalMax              = 106   // Last implementation tag
 };
 
 
-class constantTag VALUE_OBJ_CLASS_SPEC {
+class constantTag {
  private:
   jbyte _tag;
  public:
   bool is_klass() const             { return _tag == JVM_CONSTANT_Class; }
   bool is_field () const            { return _tag == JVM_CONSTANT_Fieldref; }
< prev index next >