cpp_static_assert_17.cpp 740 B

123456789101112131415161718192021222324252627282930
  1. // This file was automatically generated on Fri Aug 23 11:11:12 2019
  2. // by libs/config/tools/generate.cpp
  3. // Copyright John Maddock 2002-4.
  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. // See http://www.boost.org/libs/config for the most recent version.//
  8. // Revision $Id$
  9. //
  10. #ifdef __has_include
  11. #if __has_include(<version>)
  12. #include <version>
  13. #endif
  14. #endif
  15. #ifndef __cpp_static_assert
  16. #error "Macro << __cpp_static_assert is not set"
  17. #endif
  18. #if __cpp_static_assert < 201411
  19. #error "Macro __cpp_static_assert had too low a value"
  20. #endif
  21. int main( int, char *[] )
  22. {
  23. return 0;
  24. }