has_constexpr_limits_cmd.cpp 395 B

12345678910111213141516
  1. // Copyright John Maddock 2019.
  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. #ifndef __GNUC__
  6. #error "Compiler is not GCC"
  7. #endif
  8. #if __GNUC__ < 9
  9. #error "Older GCC versions don't support -fconstexpr-ops-limit"
  10. #endif
  11. int main()
  12. {
  13. return 0;
  14. }