[keel,nostalgia] Make core calls take Context references instead of pointers

This commit is contained in:
2023-12-01 22:53:21 -06:00
parent 72c130d8a9
commit 453e08497d
16 changed files with 116 additions and 117 deletions

View File

@@ -103,11 +103,7 @@ class AssetRef: public ox::SignalHandler {
return nullptr;
}
constexpr const T &operator*() const & noexcept {
return *m_ctr->get();
}
constexpr const T &&operator*() const && noexcept {
constexpr const T &operator*() const noexcept {
return *m_ctr->get();
}