C++11: Fix some code
This commit is contained in:
@ -39,11 +39,11 @@ public:
|
||||
: control_(0)
|
||||
{
|
||||
}
|
||||
Entry(ke::Moveable<Entry> other)
|
||||
Entry(Entry &&other)
|
||||
{
|
||||
control_ = other->control_;
|
||||
data_ = other->data_;
|
||||
other->control_ = 0;
|
||||
control_ = other.control_;
|
||||
data_ = other.data_;
|
||||
other.control_ = 0;
|
||||
}
|
||||
~Entry()
|
||||
{
|
||||
|
Reference in New Issue
Block a user