Skip to content

Commit

Permalink
Update flyweight from master
Browse files Browse the repository at this point in the history
  • Loading branch information
boost-commitbot committed Sep 29, 2024
1 parent 778f270 commit f5da2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/flyweight
Submodule flyweight updated 47 files
+95 −71 .drone.jsonnet
+87 −42 .github/workflows/ci.yml
+48 −0 README.md
+39 −2 doc/examples.html
+170 −30 doc/reference/factories.html
+48 −52 doc/reference/flyweight.html
+4 −2 doc/reference/index.html
+4 −4 doc/reference/key_value.html
+11 −9 doc/reference/tracking.html
+18 −3 doc/release_notes.html
+14 −9 doc/tests.html
+7 −7 doc/tutorial/basics.html
+76 −15 doc/tutorial/configuration.html
+6 −6 doc/tutorial/extension.html
+10 −8 doc/tutorial/key_value.html
+6 −1 example/Jamfile.v2
+163 −0 example/parallel.cpp
+248 −0 include/boost/flyweight/concurrent_factory.hpp
+40 −0 include/boost/flyweight/concurrent_factory_fwd.hpp
+6 −6 include/boost/flyweight/detail/default_value_policy.hpp
+101 −50 include/boost/flyweight/detail/flyweight_core.hpp
+2 −2 include/boost/flyweight/detail/not_placeholder_expr.hpp
+2 −2 include/boost/flyweight/detail/recursive_lw_mutex.hpp
+41 −20 include/boost/flyweight/flyweight.hpp
+5 −5 include/boost/flyweight/flyweight_fwd.hpp
+96 −85 include/boost/flyweight/key_value.hpp
+3 −3 include/boost/flyweight/refcounted.hpp
+12 −11 test/Jamfile.v2
+10 −4 test/heavy_objects.hpp
+4 −2 test/test_all_main.cpp
+2 −2 test/test_assoc_cont_fact_main.cpp
+2 −2 test/test_basic_main.cpp
+5 −2 test/test_basic_template.hpp
+91 −0 test/test_concurrent_factory.cpp
+11 −0 test/test_concurrent_factory.hpp
+18 −0 test/test_concurrent_factory_main.cpp
+2 −2 test/test_custom_factory_main.cpp
+2 −2 test/test_init.cpp
+2 −2 test/test_init_main.cpp
+2 −2 test/test_intermod_holder_main.cpp
+3 −3 test/test_multictor.cpp
+2 −2 test/test_multictor_main.cpp
+2 −2 test/test_no_locking_main.cpp
+2 −2 test/test_no_tracking_main.cpp
+2 −2 test/test_serialization_main.cpp
+2 −2 test/test_serialization_template.hpp
+2 −2 test/test_set_factory_main.cpp

0 comments on commit f5da2f7

Please sign in to comment.