]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/describe/test/enum_struct_fail.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / describe / test / enum_struct_fail.cpp
1 // Copyright 2021 Peter Dimov
2 // Distributed under the Boost Software License, Version 1.0.
3 // https://www.boost.org/LICENSE_1_0.txt
4
5 #include <boost/describe/class.hpp>
6
7 #if !defined(BOOST_DESCRIBE_CXX14)
8
9 #error "Skipping test because C++14 is not available"
10
11 #else
12
13 enum E1 {};
14 BOOST_DESCRIBE_STRUCT(E1, (), ())
15
16 #endif // !defined(BOOST_DESCRIBE_CXX14)