comparison src/share/vm/memory/universe.hpp @ 11017:ce9ecec70f99

Merge
author chegar
date Thu, 23 May 2013 12:44:18 +0100
parents 7ee0d5c53c78 92ef81e2f571
children 3a0774193f71
comparison
equal deleted inserted replaced
11016:cb92413c6934 11017:ce9ecec70f99
88 88
89 public: 89 public:
90 ActiveMethodOopsCache() { _prev_methods = NULL; } 90 ActiveMethodOopsCache() { _prev_methods = NULL; }
91 ~ActiveMethodOopsCache(); 91 ~ActiveMethodOopsCache();
92 92
93 void add_previous_version(Method* const method); 93 void add_previous_version(Method* method);
94 bool is_same_method(Method* const method) const; 94 bool is_same_method(const Method* method) const;
95 }; 95 };
96 96
97 97
98 // A helper class for caching a Method* when the user of the cache 98 // A helper class for caching a Method* when the user of the cache
99 // only cares about the latest version of the Method*. 99 // only cares about the latest version of the Method*.