Skip to content

Commit

Permalink
Bump 3rdparty/out_ptr from ea379b2 to 181f0ff
Browse files Browse the repository at this point in the history
Bumps [3rdparty/out_ptr](https://github.com/soasis/out_ptr) from `ea379b2` to `181f0ff`.
- [Commits](soasis/out_ptr@ea379b2...181f0ff)

---
updated-dependencies:
- dependency-name: 3rdparty/out_ptr
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 11, 2024
1 parent 23a3017 commit 4d4fc81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/out_ptr
Submodule out_ptr updated 88 files
+3 −4 .clang-format
+3 −3 .gitignore
+2 −2 .style.yapf
+2 −2 CMakeLists.txt
+2 −2 LICENSE
+30 −12 benchmarks/CMakeLists.txt
+5 −5 benchmarks/include/benchmarks/out_ptr/friendly_inout_ptr.hpp
+3 −3 benchmarks/include/benchmarks/out_ptr/friendly_out_ptr.hpp
+94 −94 benchmarks/include/benchmarks/out_ptr/friendly_unique_ptr.hpp
+3 −3 benchmarks/include/benchmarks/statistics.hpp
+3 −3 benchmarks/source/local_inout_ptr.cpp
+3 −3 benchmarks/source/local_out_ptr.cpp
+2 −2 benchmarks/source/out_ptr_benchmarks_main.cpp
+2 −2 benchmarks/source/reset_inout_ptr.cpp
+2 −2 benchmarks/source/reset_out_ptr.cpp
+2 −2 benchmarks/source/shared_reset_out_ptr.cpp
+3 −3 benchmarks/source/statistics.cpp
+2 −2 cmake/ztd_out_ptr-config.cmake.in
+3 −3 docs/out_ptr.adoc
+2 −2 docs/out_ptr/benchmarks.adoc
+2 −2 docs/out_ptr/caveats.adoc
+2 −2 docs/out_ptr/config.adoc
+2 −3 docs/out_ptr/customization.adoc
+2 −2 docs/out_ptr/examples.adoc
+2 −2 docs/out_ptr/overview.adoc
+2 −2 docs/out_ptr/rationale.adoc
+2 −2 docs/out_ptr/reference.adoc
+2 −2 docs/out_ptr/reference/inout_ptr.adoc
+2 −2 docs/out_ptr/reference/out_ptr.adoc
+2 −2 examples/CMakeLists.txt
+3 −3 examples/include/assert.hpp
+8 −8 examples/source/com.intrusive_ptr.cpp
+3 −3 examples/source/customization.handle.cpp
+8 −8 examples/source/customization.shared_ptr.require_deleter.cpp
+3 −3 examples/source/customization.traits.handle.cpp
+8 −8 examples/source/customization.traits.shared_ptr.require_deleter.cpp
+2 −2 examples/source/pthread.cpp
+3 −3 examples/source/sqlite.cpp
+4 −4 examples/source/std.custom_unique_ptr.cpp
+4 −4 examples/source/std.shared_ptr.cpp
+3 −3 examples/source/std.unique_ptr.cpp
+3 −3 include/ztd/out_ptr.hpp
+3 −3 include/ztd/out_ptr/detail/base_inout_ptr_impl.hpp
+66 −55 include/ztd/out_ptr/detail/base_out_ptr_impl.hpp
+5 −5 include/ztd/out_ptr/detail/clever_inout_ptr.hpp
+8 −8 include/ztd/out_ptr/detail/clever_inout_ptr_impl.hpp
+5 −5 include/ztd/out_ptr/detail/clever_out_ptr.hpp
+4 −4 include/ztd/out_ptr/detail/clever_out_ptr_impl.hpp
+4 −4 include/ztd/out_ptr/detail/customization_forward.hpp
+3 −3 include/ztd/out_ptr/detail/inout_ptr_traits.hpp
+13 −13 include/ztd/out_ptr/detail/integer_sequence.hpp
+3 −3 include/ztd/out_ptr/detail/is_specialization_of.hpp
+4 −4 include/ztd/out_ptr/detail/marker.hpp
+5 −7 include/ztd/out_ptr/detail/out_ptr_traits.hpp
+5 −5 include/ztd/out_ptr/detail/simple_inout_ptr.hpp
+5 −5 include/ztd/out_ptr/detail/simple_out_ptr.hpp
+6 −6 include/ztd/out_ptr/detail/voidpp_op.hpp
+5 −5 include/ztd/out_ptr/inout_ptr.hpp
+5 −5 include/ztd/out_ptr/necessary_arity.hpp
+4 −4 include/ztd/out_ptr/out_ptr.hpp
+3 −3 include/ztd/out_ptr/pointer_of.hpp
+38 −38 include/ztd/out_ptr/version.hpp
+3 −3 tests/CMakeLists.txt
+2 −2 tests/failure/CMakeLists.txt
+3 −3 tests/failure/source/inout_ptr.shared_ptr.cpp
+3 −3 tests/failure/source/inout_ptr.shared_ptr.deleter.cpp
+3 −3 tests/failure/source/main.cpp
+3 −3 tests/failure/source/out_ptr.shared_ptr.deleter.cpp
+5 −5 tests/include/ztd/out_ptr/test/c_api.hpp
+5 −5 tests/source/clever_inout_ptr_test.cpp
+5 −5 tests/source/clever_out_ptr_test.cpp
+3 −3 tests/source/const_test.cpp
+7 −7 tests/source/custom_unique_deleter_test.cpp
+11 −11 tests/source/customized_inout_ptr_test.cpp
+10 −10 tests/source/customized_out_ptr_test.cpp
+10 −10 tests/source/customized_traits_inout_ptr_test.cpp
+10 −10 tests/source/customized_traits_out_ptr_test.cpp
+9 −9 tests/source/exceptions_inout_ptr_test.cpp
+9 −7 tests/source/exceptions_out_ptr_test.cpp
+3 −3 tests/source/footguns.cpp
+9 −9 tests/source/inout_ptr_test.cpp
+12 −3 tests/source/main.cpp
+15 −15 tests/source/out_ptr_test.cpp
+3 −3 tests/source/raw_inout_ptr_test.cpp
+3 −3 tests/source/raw_out_ptr_test.cpp
+7 −7 tests/source/simple_inout_ptr_test.cpp
+13 −13 tests/source/simple_out_ptr_test.cpp
+3 −3 vendor/handle/include/phd/handle.hpp

0 comments on commit 4d4fc81

Please sign in to comment.