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 // 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> 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 main(int,char * [])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 21