diff --git a/src/hotspot/share/gc/g1/g1OopClosures.hpp b/src/hotspot/share/gc/g1/g1OopClosures.hpp index 7384c36..fee69a3 100644 --- a/src/hotspot/share/gc/g1/g1OopClosures.hpp +++ b/src/hotspot/share/gc/g1/g1OopClosures.hpp @@ -157,12 +157,12 @@ public: class G1CLDScanClosure : public CLDClosure { G1ParCopyHelper* _closure; bool _process_only_dirty; - int _claim_value; + int _claim; int _count; public: G1CLDScanClosure(G1ParCopyHelper* closure, bool process_only_dirty, int claim_value) - : _closure(closure), _process_only_dirty(process_only_dirty), _claim_value(claim_value), _count(0) {} + : _closure(closure), _process_only_dirty(process_only_dirty), _claim(claim_value), _count(0) {} void do_cld(ClassLoaderData* cld); };