File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929G1CollectorState::G1CollectorState (const G1CollectorState& other) :
3030 _phase(other._phase), _initiate_conc_mark_if_possible(other.initiate_conc_mark_if_possible()) { }
3131
32- G1CollectorState& G1CollectorState::operator =(G1CollectorState const & other) {
32+ G1CollectorState& G1CollectorState::operator =(const G1CollectorState & other) {
3333 if (this != &other) {
3434 _phase = other._phase ;
3535 set_initiate_conc_mark_if_possible (other.initiate_conc_mark_if_possible ());
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class G1CollectorState {
6868 _initiate_conc_mark_if_possible (false ) { }
6969
7070 G1CollectorState (const G1CollectorState& other);
71- G1CollectorState& operator =(G1CollectorState const & other);
71+ G1CollectorState& operator =(const G1CollectorState & other);
7272
7373 // Phase setters
7474 inline void set_in_normal_young_gc ();
You can’t perform that action at this time.
0 commit comments