]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/leaf/test/BOOST_LEAF_ASSIGN_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / leaf / test / BOOST_LEAF_ASSIGN_test.cpp
index 7cd3b0dd1b054a43ee1c9810e396fb2f178c51dd..2724636bc7fc7765c95fc313e59cfc34ca4a2912 100644 (file)
@@ -1,12 +1,21 @@
-// Copyright (c) 2018-2020 Emil Dotchevski and Reverge Studios, Inc.
+// Copyright 2018-2022 Emil Dotchevski and Reverge Studios, Inc.
 
 // Distributed under the Boost Software License, Version 1.0. (See accompanying
 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
-#include <boost/leaf/result.hpp>
-#include <boost/leaf/handle_errors.hpp>
-#include <boost/config/workaround.hpp>
+#ifdef BOOST_LEAF_TEST_SINGLE_HEADER
+#   include "leaf.hpp"
+#else
+#   include <boost/leaf/result.hpp>
+#   include <boost/leaf/handle_errors.hpp>
+#endif
+
 #include "lightweight_test.hpp"
+#ifdef BOOST_LEAF_BOOST_AVAILABLE
+#   include <boost/config/workaround.hpp>
+#else
+#   define BOOST_WORKAROUND(a,b) 0
+#endif
 
 namespace leaf = boost::leaf;
 
@@ -15,8 +24,11 @@ struct value
     int x;
 
     explicit value( int x ): x(x) { };
+
+#ifndef BOOST_LEAF_NO_CXX11_REF_QUALIFIERS
     value( value const & ) = delete;
     value( value && ) = default;
+#endif
 };
 
 leaf::result<value> f1()