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
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
6af758643e
commit
b05762c95b
1 changed files with 5 additions and 0 deletions
|
@ -66,6 +66,11 @@ public:
|
|||
return m_value;
|
||||
}
|
||||
|
||||
[[nodiscard]] auto get() -> Underlying_T
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
private:
|
||||
Underlying_T m_value;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue