boost_no_cxx14_binary_literals.ipp 586 B

1234567891011121314151617181920212223
  1. // (C) Copyright Kohei Takahashi 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. // See http://www.boost.org/libs/config for more information.
  6. // MACRO: BOOST_NO_CXX14_BINARY_LITERALS
  7. // TITLE: C++14 binary literals unavailable
  8. // DESCRIPTION: The compiler does not support C++14 binary literals
  9. namespace boost_no_cxx14_binary_literals
  10. {
  11. int test()
  12. {
  13. return ((int)0b01000010 == (int)0x42) ? 0 : 1;
  14. }
  15. }