[Zion] Move away from storing pointers to IpcMessages.

This commit is contained in:
Drew Galbraith 2023-11-02 23:51:52 -07:00
parent 59f147193a
commit d2c77e1d18
4 changed files with 48 additions and 34 deletions

View file

@ -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;
}