hotspot/src/share/vm/oops/constantPool.hpp
changeset 17370 59a0620561fa
parent 17078 a37993c37937
child 20017 81eba62e9048
child 20063 8965b97fcbb2
--- a/hotspot/src/share/vm/oops/constantPool.hpp	Wed May 08 21:06:46 2013 -0400
+++ b/hotspot/src/share/vm/oops/constantPool.hpp	Fri May 10 08:27:30 2013 -0700
@@ -354,7 +354,7 @@
 
   Symbol* klass_name_at(int which);  // Returns the name, w/o resolving.
 
-  Klass* resolved_klass_at(int which) {  // Used by Compiler
+  Klass* resolved_klass_at(int which) const {  // Used by Compiler
     guarantee(tag_at(which).is_klass(), "Corrupted constant pool");
     // Must do an acquire here in case another thread resolved the klass
     // behind our back, lest we later load stale values thru the oop.