1 2// (C) Copyright Kohei Takahashi 2014 3 4// Use, modification and distribution are subject to the 5// Boost Software License, Version 1.0. (See accompanying file 6// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 8// See http://www.boost.org/libs/config for more information. 9 10// MACRO: BOOST_NO_CXX14_BINARY_LITERALS 11// TITLE: C++14 binary literals unavailable 12// DESCRIPTION: The compiler does not support C++14 binary literals 13 14namespace boost_no_cxx14_binary_literals 15{ 16 17int test() 18{ 19 return ((int)0b01000010 == (int)0x42) ? 0 : 1; 20} 21 22} 23 24