diff --git a/single/sol/sol.hpp b/single/sol/sol.hpp index dd5e8228..fe25b54f 100644 --- a/single/sol/sol.hpp +++ b/single/sol/sol.hpp @@ -20,8 +20,8 @@ // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // This file was generated with a script. -// Generated 2018-02-05 00:23:04.380676 UTC -// This header was generated with sol v2.19.0 (revision 8f6f12d) +// Generated 2018-02-05 00:55:01.557255 UTC +// This header was generated with sol v2.19.0 (revision c9980bf) // https://github.com/ThePhD/sol2 #ifndef SOL_SINGLE_INCLUDE_HPP @@ -14467,10 +14467,6 @@ namespace sol { return set(std::move(other)); } - int push() const noexcept { - return get().push(L); - } - template decltype(auto) get() const { return tuple_get(std::make_index_sequence>::value>()); @@ -14522,6 +14518,10 @@ namespace sol { return p; } + int push() const noexcept { + return get().push(lua_state()); + } + type get_type() const { type t = type::none; auto pp = stack::push_pop(tbl); diff --git a/single/sol/sol_forward.hpp b/single/sol/sol_forward.hpp index 773c2373..7e017145 100644 --- a/single/sol/sol_forward.hpp +++ b/single/sol/sol_forward.hpp @@ -20,8 +20,8 @@ // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // This file was generated with a script. -// Generated 2018-02-05 00:23:04.726719 UTC -// This header was generated with sol v2.19.0 (revision 8f6f12d) +// Generated 2018-02-05 00:55:01.877796 UTC +// This header was generated with sol v2.19.0 (revision c9980bf) // https://github.com/ThePhD/sol2 #ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP diff --git a/sol/proxy.hpp b/sol/proxy.hpp index 5ef8fa3f..ef464054 100644 --- a/sol/proxy.hpp +++ b/sol/proxy.hpp @@ -94,10 +94,6 @@ namespace sol { return set(std::move(other)); } - int push() const noexcept { - return get().push(L); - } - template decltype(auto) get() const { return tuple_get(std::make_index_sequence>::value>()); @@ -149,6 +145,10 @@ namespace sol { return p; } + int push() const noexcept { + return get().push(lua_state()); + } + type get_type() const { type t = type::none; auto pp = stack::push_pop(tbl);