]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/contract/example/features/move.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / contract / example / features / move.cpp
index caa68f3b8181d004bbdc0cd5e674ef162d38a322..de54d16a0db842dc0ad2c1f5e34cf39409f8b5b1 100644 (file)
@@ -22,7 +22,7 @@ public:
     }
     
     // Move constructor.
-    /* implicit */ circular_buffer(circular_buffer&& other) :
+    circular_buffer(circular_buffer&& other) :
         boost::contract::constructor_precondition<circular_buffer>([&] {
             BOOST_CONTRACT_ASSERT(!other.moved());
         })
@@ -87,7 +87,7 @@ public:
     }
 
     // Copy constructor.
-    /* implicit */ circular_buffer(circular_buffer const& other) :
+    circular_buffer(circular_buffer const& other) :
         boost::contract::constructor_precondition<circular_buffer>([&] {
             BOOST_CONTRACT_ASSERT(!other.moved());
         })