]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/type_index/test/type_index_test_ctti_construct_fail.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / type_index / test / type_index_test_ctti_construct_fail.cpp
1 //
2 // Copyright 2012-2020 Antony Polukhin.
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See
5 // accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7
8 #include <boost/type_index/ctti_type_index.hpp>
9
10 int main() {
11 using namespace boost::typeindex;
12 ctti_type_index::type_info_t t;
13 (void)t;
14 }
15