From fe6a28b99cf5103db573cba0de058153b044a18d Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 14 Sep 2017 02:14:06 +1000 Subject: [PATCH] except: map the arguments to try_func through vk::native --- except.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)...); }