]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/config/test/config_build_check.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / config / test / config_build_check.cpp
CommitLineData
7c673cae
FG
1// Copyright John Maddock 2014.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6// See http://www.boost.org/libs/config for the most recent version.//
7// Revision $Id$
8//
b32b8144
FG
9// We include this as it contains some workarounds we may need (like a declaration for ::gets to get clang building):
10#include <boost/config.hpp>
7c673cae
FG
11
12# include "../test/boost_has_int128.ipp"
13# include "../test/boost_no_constexpr.ipp"
14# include "../test/boost_no_cxx11_user_lit.ipp"
15
16int main( int, char *[] )
17{
18 return boost_has_int128::test() || boost_no_cxx11_constexpr::test() || boost_no_cxx11_user_defined_literals::test();
19}
20