MCPcopy Create free account
hub / github.com/cinder/Cinder / operator=

Method operator=

include/asio/basic_stream_socket.hpp:318–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316 */
317 template <typename Protocol1, typename Executor1>
318 typename enable_if<
319 is_convertible<Protocol1, Protocol>::value
320 && is_convertible<Executor1, Executor>::value,
321 basic_stream_socket&
322 >::type operator=(basic_stream_socket<Protocol1, Executor1>&& other)
323 {
324 basic_socket<Protocol, Executor>::operator=(std::move(other));
325 return *this;
326 }
327#endif // defined(ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
328
329 /// Destroys the socket.

Callers

nothing calls this directly

Calls 1

operator=Function · 0.70

Tested by

no test coverage detected