From 2b641aa2f4f5b894ceed8bf2a46fcef35e930d56 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Sun, 10 Nov 2024 15:14:38 -0600 Subject: Refactorings from libfud. --- src/luacxx.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/luacxx.hpp') diff --git a/src/luacxx.hpp b/src/luacxx.hpp index 388f640..fb7c1b9 100644 --- a/src/luacxx.hpp +++ b/src/luacxx.hpp @@ -23,9 +23,9 @@ public: LuaContext(); ~LuaContext(); LuaContext(const LuaContext&) = delete; - LuaContext(LuaContext&& rhs); + LuaContext(LuaContext&& rhs) noexcept; LuaContext& operator=(const LuaContext&) = delete; - LuaContext& operator=(LuaContext&& rhs); + LuaContext& operator=(LuaContext&& rhs) noexcept; fud::FudStatus loadFile(const char* filename); -- cgit v1.2.3