main.cpp 553 B

12345678910111213141516171819
  1. //
  2. // Copyright (c) 2018 Mateusz Loskot <mateusz@loskot.net>
  3. // Copyright (c) 2007-2015 Andrey Semashev
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. // This file contains a test boilerplate for checking that every public header
  9. // is self-contained and does not have any missing #include-s.
  10. #define BOOST_GIL_TEST_INCLUDE_HEADER() <boost/gil/BOOST_GIL_TEST_HEADER>
  11. #include BOOST_GIL_TEST_INCLUDE_HEADER()
  12. int main()
  13. {
  14. return 0;
  15. }