Skip to content

Commit

Permalink
Bump deps/sol2 from eab1430 to 9c882a2
Browse files Browse the repository at this point in the history
Bumps [deps/sol2](https://github.com/ThePhD/sol2) from `eab1430` to `9c882a2`.
- [Release notes](https://github.com/ThePhD/sol2/releases)
- [Commits](ThePhD/sol2@eab1430...9c882a2)

---
updated-dependencies:
- dependency-name: deps/sol2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Dec 18, 2023
1 parent aef84a0 commit e58b086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/sol2
Submodule sol2 updated 52 files
+1 −0 .gitignore
+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

0 comments on commit e58b086

Please sign in to comment.