Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

build(deps): bump deps/sol2 from eab1430 to ff3f254 #127

Merged
merged 1 commit into from
Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/sol2
Submodule sol2 updated 51 files
+1 −1 cmake/Packages/FindKaguyaBuild.cmake
+1 −1 cmake/Packages/FindLuaBridgeBuild.cmake
+1 −1 cmake/Packages/FindLuaBuild.cmake
+59 −36 cmake/Packages/FindLuaBuild/LuaJIT.cmake
+23 −20 cmake/Packages/FindLuaBuild/LuaVanilla.cmake
+1 −1 cmake/Packages/FindLuwraBuild.cmake
+1 −1 cmake/Packages/FindToLuappBuild.cmake
+1 −0 documentation/source/containers.rst
+1 −1 examples/CMakeLists.txt
+1 −1 examples/customization/CMakeLists.txt
+1 −1 examples/interop/LuaBridge/CMakeLists.txt
+1 −1 examples/interop/kaguya/CMakeLists.txt
+1 −1 examples/interop/luwra/CMakeLists.txt
+1 −1 examples/interop/tolua/CMakeLists.txt
+2 −2 examples/require_dll_example/CMakeLists.txt
+1 −1 examples/source/property.cpp
+14 −7 examples/source/usertype_call_from_c++.cpp
+47 −0 include/sol/abort.hpp
+33 −0 include/sol/base_traits.hpp
+11 −11 include/sol/compatibility.hpp
+9 −5 include/sol/compatibility/lua_version.hpp
+3 −3 include/sol/forward.hpp
+44 −0 include/sol/forward_as.hpp
+4 −1 include/sol/stack.hpp
+3 −8 include/sol/stack_get_unqualified.hpp
+19 −8 include/sol/traits.hpp
+37 −0 include/sol/unreachable.hpp
+55 −26 include/sol/usertype_container.hpp
+22 −13 include/sol/version.hpp
+2 −2 single/CMakeLists.txt
+7 −7 single/single.py
+4 −3 tests/CMakeLists.txt
+40 −0 tests/coroutines/CMakeLists.txt
+185 −0 tests/coroutines/source/array_proxy_lifetime.cpp
+31 −0 tests/coroutines/source/main.cpp
+96 −0 tests/coroutines/source/properties_lifetime.cpp
+1 −1 tests/regression_tests/simple/source/1000 - readonly warning.cpp
+1 −1 tests/regression_tests/simple/source/1008 - as_function binding triggers correctly.cpp
+1 −1 tests/regression_tests/simple/source/1067 - optional bindings.cpp
+1 −1 tests/regression_tests/simple/source/1072 - capture exception propagation.cpp
+1 −1 tests/regression_tests/simple/source/1087 - readonly property error checking.cpp
+1 −1 tests/regression_tests/simple/source/1095 - raw_get from global table fails.cpp
+1 −1 tests/regression_tests/simple/source/1096 - functions binding wrong.cpp
+1 −1 tests/regression_tests/simple/source/1144 - type destructed from non-destructed memory.cpp
+1 −1 tests/regression_tests/simple/source/1149 - static method gets const-morphed in internals.cpp
+1 −1 tests/regression_tests/simple/source/1192 - incorrect alignment calculation.cpp
+1 −1 tests/regression_tests/simple/source/1211 - protected_function_result nullptr.cpp
+1 −1 tests/regression_tests/simple/source/1266 - add method in Lua 5.4 showing freelist.cpp
+1 −1 tests/regression_tests/simple/source/1315 - keep-alive memory.cpp
+2 −2 tests/run_time/source/container_semantics.cpp
+2 −2 tests/run_time/source/containers.cpp
Loading