src/share/vm/classfile/stackMapTableFormat.hpp

Print this page

        

@@ -20,10 +20,15 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  *
  */
 
+#ifndef SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP
+#define SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP
+
+#include "classfile/verificationType.hpp"
+
 // These classes represent the stack-map substructures described in the JVMS
 // (hence the non-conforming naming scheme).
 
 // These classes work with the types in their compressed form in-place (as they
 // would appear in the classfile).  No virtual methods or fields allowed.

@@ -912,5 +917,7 @@
   }
   void set_number_of_entries(u2 num) {
     Bytes::put_Java_u2(number_of_entries_addr(), num);
   }
 };
+
+#endif // SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP