diff --git a/except.hpp b/except.hpp index 6ad3126..e479d72 100644 --- a/except.hpp +++ b/except.hpp @@ -56,11 +56,11 @@ namespace cruft::vk { VkResult >) { - try_code (func (std::forward (args)...)); + try_code (func (maybe_native (args)...)); return; } else - return func (std::forward (args)...); + return func (maybe_native (args)...); }