]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/predef/test/workaround_strict_config.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / predef / test / workaround_strict_config.cpp
1 /*
2 Copyright Rene Rivera 2011-2017
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt)
6 */
7 #include <boost/predef/version_number.h>
8 #define BOOST_STRICT_CONFIG
9 #include <boost/predef/other/workaround.h>
10
11 int main()
12 {
13 #if BOOST_PREDEF_WORKAROUND(BOOST_VERSION_NUMBER_AVAILABLE,==,0,0,1)
14 fail();
15 #endif
16 return 0;
17 }