diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-11-10 15:14:38 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-11-10 15:14:38 -0600 |
commit | 2b641aa2f4f5b894ceed8bf2a46fcef35e930d56 (patch) | |
tree | b5decb0fcd6a225c89d2ababb0fdf2d84b39a334 /src/luacxx.hpp | |
parent | 47e0ff88edd4660513f1d4f3d731008461532a13 (diff) |
Diffstat (limited to 'src/luacxx.hpp')
-rw-r--r-- | src/luacxx.hpp | 4 |
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); |