]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/thread/example/thread_guard.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / thread / example / thread_guard.cpp
index b396802d4dec4db90ce7ac784326fe0e6f8c137e..a8b285deb54938cf7fd22f1c0e43fa36c18f78ea 100644 (file)
@@ -20,6 +20,7 @@ struct func
     int& i;
 
     func(int& i_):i(i_){}
+    func(func const& other):i(other.i){}
 
     void operator()()
     {