2
0
mirror of https://github.com/boostorg/gil.git synced 2026-01-29 07:32:18 +00:00
Files
gil/test/headers/main.cpp
Mateusz Łoskot 1075967712 Move self-contained headers test to test/headers
Modify Boost.Jam script generating tests to support targets per the library
directories/modules.
2018-12-06 22:35:39 +01:00

20 lines
553 B
C++

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