diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-25 17:37:32 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-25 17:37:32 +1000 |
commit | 76f78c4b20bb0b66549a552953204d52334435f2 (patch) | |
tree | 12cba2688e763470202e03a50dc44178b9ef0c61 /source/core/StarLua.hpp | |
parent | d07baefaaad18a3b096c085855fc9038a5647ba1 (diff) |
Update StarLua.hpp
Diffstat (limited to 'source/core/StarLua.hpp')
-rw-r--r-- | source/core/StarLua.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/core/StarLua.hpp b/source/core/StarLua.hpp index 792dc09..affee9a 100644 --- a/source/core/StarLua.hpp +++ b/source/core/StarLua.hpp @@ -392,6 +392,8 @@ struct LuaNullTermWrapper : T { LuaNullTermWrapper(T const& bt) : T(bt) {} LuaNullTermWrapper(T&& bt) : T(std::move(bt)) {} + using T::T; + LuaNullTermWrapper& operator=(LuaNullTermWrapper const& rhs) { T::operator=(rhs); return *this; |