[keel,nostalgia] Make core calls take Context references instead of pointers
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user