< prev index next >

src/share/vm/gc/g1/g1ConcurrentMark.hpp

Print this page
rev 13284 : imported patch 8184346-cleanup-g1cmbitmap
rev 13286 : imported patch 8184346-erikd-mgerdin-review
rev 13287 : [mq]: 8184346-erikd-review

@@ -111,12 +111,12 @@
 };
 
 // Closure for iteration over bitmaps
 class G1CMBitMapClosure VALUE_OBJ_CLASS_SPEC {
 private:
-  G1ConcurrentMark*           _cm;
-  G1CMTask*                   _task; 
+  G1ConcurrentMark* const _cm;
+  G1CMTask* const _task; 
 public:
   G1CMBitMapClosure(G1CMTask *task, G1ConcurrentMark* cm) : _task(task), _cm(cm) { }
 
   bool do_addr(HeapWord* const addr);
 };
< prev index next >