feat(memory): add a get method to null_on_move due to weird cast required by vk_debug_set_object_name
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
light7734 2025-10-02 23:54:08 +03:30
parent 6af758643e
commit b05762c95b
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -66,6 +66,11 @@ public:
return m_value; return m_value;
} }
[[nodiscard]] auto get() -> Underlying_T
{
return m_value;
}
private: private:
Underlying_T m_value; Underlying_T m_value;
}; };