config.cpp 456 B

12345678910111213141516171819
  1. // Range v3 library
  2. //
  3. // Copyright Casey Carter 2016
  4. //
  5. // Use, modification and distribution is subject to the
  6. // Boost Software License, Version 1.0. (See accompanying
  7. // file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. // Project home: https://github.com/ericniebler/range-v3
  11. #include <range/v3/detail/config.hpp>
  12. RANGES_DEPRECATED("compile test for \"RANGES_DEPRECATED\"") void foo() {}
  13. int main()
  14. {
  15. return 0;
  16. }