]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/any/test/any_test_rv.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / any / test / any_test_rv.cpp
CommitLineData
7c673cae
FG
1// Unit test for boost::any.
2//
3// See http://www.boost.org for most recent version, including documentation.
4//
1e59de90 5// Copyright Antony Polukhin, 2013-2022.
7c673cae
FG
6//
7// Distributed under the Boost
8// Software License, Version 1.0. (See accompanying file
9// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).
10
b32b8144 11#include <boost/any.hpp>
7c673cae 12
1e59de90 13#include "move_test.hpp"
7c673cae 14
1e59de90 15#ifdef BOOST_NO_CXX11_RVALUE_REFERENCES
7c673cae
FG
16
17int main()
18{
1e59de90 19 return EXIT_SUCCESS;
7c673cae
FG
20}
21
7c673cae 22#else
7c673cae 23
1e59de90
TL
24int main() {
25 return any_tests::move_tests<boost::any>::run_tests();
7c673cae
FG
26}
27
28#endif
29