[Zion] Move Memory Mappings to a dedicated tree impl.

This commit is contained in:
Drew Galbraith 2023-11-19 18:45:13 -08:00
parent 3e9923f227
commit e668428d9d
7 changed files with 129 additions and 47 deletions

View file

@ -10,6 +10,7 @@ class Ref {
Ref(Ref&& other) = default;
operator T&() const { return ref_; }
T& get() const { return ref_; }
private:
T& ref_;