mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
Regenerate the single header file
This commit is contained in:
parent
bd10d0e6c4
commit
47bbe98e20
@ -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-08-04 15:02:30.421859 UTC
|
||||
// This header was generated with sol v2.20.3 (revision daa9993)
|
||||
// Generated 2018-10-28 14:26:05.925454 UTC
|
||||
// This header was generated with sol v2.20.4 (revision a19a5a3)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_INCLUDE_HPP
|
||||
@ -6973,6 +6973,7 @@ namespace sol {
|
||||
const void* pointer() const noexcept {
|
||||
int si = push();
|
||||
const void* vp = lua_topointer(lua_state(), -si);
|
||||
lua_pop(this->lua_state(), si);
|
||||
return vp;
|
||||
}
|
||||
|
||||
@ -15513,7 +15514,7 @@ namespace sol {
|
||||
|
||||
template <typename... Ret, typename... Args>
|
||||
decltype(auto) call(Args&&... args) {
|
||||
#if defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 191200000
|
||||
#if !defined(__clang__) && defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 191200000
|
||||
// MSVC is ass sometimes
|
||||
return get<function>().call<Ret...>(std::forward<Args>(args)...);
|
||||
#else
|
||||
@ -20767,7 +20768,7 @@ namespace sol {
|
||||
|
||||
template <typename... Ret, typename... Args>
|
||||
decltype(auto) call(Args&&... args) {
|
||||
#if defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 191200000
|
||||
#if !defined(__clang__) && defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 191200000
|
||||
// MSVC is ass sometimes
|
||||
return get<protected_function>().call<Ret...>(std::forward<Args>(args)...);
|
||||
#else
|
||||
|
@ -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-08-04 15:02:30.657205 UTC
|
||||
// This header was generated with sol v2.20.3 (revision daa9993)
|
||||
// Generated 2018-10-28 14:26:06.124383 UTC
|
||||
// This header was generated with sol v2.20.4 (revision a19a5a3)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP
|
||||
|
Loading…
x
Reference in New Issue
Block a user