[Zion] Move away from storing pointers to IpcMessages.
This commit is contained in:
parent
59f147193a
commit
d2c77e1d18
4 changed files with 48 additions and 34 deletions
|
|
@ -21,7 +21,7 @@ class Array {
|
|||
|
||||
Array(const Array&) = delete;
|
||||
|
||||
Array(Array&& other) : data_(other.data), size_(other.size_) {
|
||||
Array(Array&& other) : data_(other.data_), size_(other.size_) {
|
||||
other.data_ = nullptr;
|
||||
other.size_ = 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue