< prev index next >

src/hotspot/share/gc/shared/taskqueue.cpp

Print this page
rev 53546 : Remove TaskTerminator's assignment operator

*** 279,293 **** if (_terminator != NULL) { delete _terminator; } } - // Move assignment - TaskTerminator& TaskTerminator::operator=(const TaskTerminator& o) { - if (_terminator != NULL) { - delete _terminator; - } - _terminator = o.terminator(); - const_cast<TaskTerminator&>(o)._terminator = NULL; - return *this; - } - --- 279,283 ----
< prev index next >