mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
woops
This commit is contained in:
parent
c9980bfc28
commit
22127fa6fa
|
@ -20,8 +20,8 @@
|
||||||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// This file was generated with a script.
|
// This file was generated with a script.
|
||||||
// Generated 2018-02-05 00:23:04.380676 UTC
|
// Generated 2018-02-05 00:55:01.557255 UTC
|
||||||
// This header was generated with sol v2.19.0 (revision 8f6f12d)
|
// This header was generated with sol v2.19.0 (revision c9980bf)
|
||||||
// https://github.com/ThePhD/sol2
|
// https://github.com/ThePhD/sol2
|
||||||
|
|
||||||
#ifndef SOL_SINGLE_INCLUDE_HPP
|
#ifndef SOL_SINGLE_INCLUDE_HPP
|
||||||
|
@ -14467,10 +14467,6 @@ namespace sol {
|
||||||
return set(std::move(other));
|
return set(std::move(other));
|
||||||
}
|
}
|
||||||
|
|
||||||
int push() const noexcept {
|
|
||||||
return get<reference>().push(L);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
decltype(auto) get() const {
|
decltype(auto) get() const {
|
||||||
return tuple_get<T>(std::make_index_sequence<std::tuple_size<meta::unqualified_t<key_type>>::value>());
|
return tuple_get<T>(std::make_index_sequence<std::tuple_size<meta::unqualified_t<key_type>>::value>());
|
||||||
|
@ -14522,6 +14518,10 @@ namespace sol {
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int push() const noexcept {
|
||||||
|
return get<reference>().push(lua_state());
|
||||||
|
}
|
||||||
|
|
||||||
type get_type() const {
|
type get_type() const {
|
||||||
type t = type::none;
|
type t = type::none;
|
||||||
auto pp = stack::push_pop(tbl);
|
auto pp = stack::push_pop(tbl);
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// This file was generated with a script.
|
// This file was generated with a script.
|
||||||
// Generated 2018-02-05 00:23:04.726719 UTC
|
// Generated 2018-02-05 00:55:01.877796 UTC
|
||||||
// This header was generated with sol v2.19.0 (revision 8f6f12d)
|
// This header was generated with sol v2.19.0 (revision c9980bf)
|
||||||
// https://github.com/ThePhD/sol2
|
// https://github.com/ThePhD/sol2
|
||||||
|
|
||||||
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP
|
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP
|
||||||
|
|
|
@ -94,10 +94,6 @@ namespace sol {
|
||||||
return set(std::move(other));
|
return set(std::move(other));
|
||||||
}
|
}
|
||||||
|
|
||||||
int push() const noexcept {
|
|
||||||
return get<reference>().push(L);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
decltype(auto) get() const {
|
decltype(auto) get() const {
|
||||||
return tuple_get<T>(std::make_index_sequence<std::tuple_size<meta::unqualified_t<key_type>>::value>());
|
return tuple_get<T>(std::make_index_sequence<std::tuple_size<meta::unqualified_t<key_type>>::value>());
|
||||||
|
@ -149,6 +145,10 @@ namespace sol {
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int push() const noexcept {
|
||||||
|
return get<reference>().push(lua_state());
|
||||||
|
}
|
||||||
|
|
||||||
type get_type() const {
|
type get_type() const {
|
||||||
type t = type::none;
|
type t = type::none;
|
||||||
auto pp = stack::push_pop(tbl);
|
auto pp = stack::push_pop(tbl);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user