tuple_version.cpp 403 B

1234567891011121314151617
  1. // Copyright 2019 Peter Dimov
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. //
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. #include <boost/mp11/tuple.hpp>
  8. #include <boost/version.hpp>
  9. #include <boost/core/lightweight_test.hpp>
  10. int main()
  11. {
  12. BOOST_TEST_EQ( BOOST_MP11_VERSION, BOOST_VERSION );
  13. return boost::report_errors();
  14. }