Regenerate the single header file

This commit is contained in:
Patryk Czachurski 2018-10-28 15:26:50 +01:00 committed by The Phantom Derpstorm
parent bd10d0e6c4
commit 47bbe98e20
2 changed files with 43 additions and 42 deletions

View File

@ -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

View File

@ -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