]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/asio/ssl/detail/engine.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / asio / ssl / detail / engine.hpp
index f3c4407a688409968226ec01073d771a20124fd7..d84fad97f6c93fced964556ac8c1b87de5bc96ac 100644 (file)
@@ -59,6 +59,11 @@ public:
   // Construct a new engine for the specified context.
   BOOST_ASIO_DECL explicit engine(SSL_CTX* context);
 
+#if defined(BOOST_ASIO_HAS_MOVE)
+  // Move construct from another engine.
+  BOOST_ASIO_DECL engine(engine&& other) BOOST_ASIO_NOEXCEPT;
+#endif // defined(BOOST_ASIO_HAS_MOVE)
+
   // Destructor.
   BOOST_ASIO_DECL ~engine();