Update StarLua.hpp
This commit is contained in:
parent
d07baefaaa
commit
76f78c4b20
@ -392,6 +392,8 @@ struct LuaNullTermWrapper : T {
|
|||||||
LuaNullTermWrapper(T const& bt) : T(bt) {}
|
LuaNullTermWrapper(T const& bt) : T(bt) {}
|
||||||
LuaNullTermWrapper(T&& bt) : T(std::move(bt)) {}
|
LuaNullTermWrapper(T&& bt) : T(std::move(bt)) {}
|
||||||
|
|
||||||
|
using T::T;
|
||||||
|
|
||||||
LuaNullTermWrapper& operator=(LuaNullTermWrapper const& rhs) {
|
LuaNullTermWrapper& operator=(LuaNullTermWrapper const& rhs) {
|
||||||
T::operator=(rhs);
|
T::operator=(rhs);
|
||||||
return *this;
|
return *this;
|
||||||
|
Loading…
Reference in New Issue
Block a user