summaryrefslogtreecommitdiff
path: root/src/luacxx.hpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-11-10 15:14:38 -0600
committerDominick Allen <djallen@librehumanitas.org>2024-11-10 15:14:38 -0600
commit2b641aa2f4f5b894ceed8bf2a46fcef35e930d56 (patch)
treeb5decb0fcd6a225c89d2ababb0fdf2d84b39a334 /src/luacxx.hpp
parent47e0ff88edd4660513f1d4f3d731008461532a13 (diff)
Refactorings from libfud.HEADmaster
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);