MCPcopy Create free account
hub / github.com/boostorg/asio / copy_shared

Method copy_shared

include/boost/asio/execution/any_executor.hpp:775–780  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

773 }
774
775 static void copy_shared(any_executor_base& ex1, const any_executor_base& ex2)
776 {
777 typedef shared_target_executor type;
778 new (&ex1.object_) type(ex2.object<type>());
779 ex1.target_ = ex2.target_;
780 }
781
782 static void move_shared(any_executor_base& ex1, any_executor_base& ex2)
783 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected