summaryrefslogtreecommitdiff
path: root/src/luacxx.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/luacxx.hpp')
-rw-r--r--src/luacxx.hpp4
1 files changed, 2 insertions, 2 deletions
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);