]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/throw_exception/test/throw_exception_nx_test3.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / throw_exception / test / throw_exception_nx_test3.cpp
1 // Copyright 2020 Peter Dimov
2 // Distributed under the Boost Software License, Version 1.0.
3 // http://www.boost.org/LICENSE_1_0.txt
4
5 #if defined(_MSC_VER)
6 # pragma warning(disable: 4702) // unreachable code
7 # pragma warning(disable: 4577) // noexcept used without /EHsc
8 # pragma warning(disable: 4530) // C++ exception handler used
9 #endif
10
11 // Make sure that simple inclusion does not
12 // require boost::throw_exception to be defined
13
14 #include <boost/throw_exception.hpp>
15
16 int main()
17 {
18 }