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 9 // This file contains a test boilerplate for checking that every public header 10 // is self-contained and does not have any missing #include-s. 11 12 #define BOOST_GEOMETRY_TEST_INCLUDE_HEADER() <boost/geometry/BOOST_GEOMETRY_TEST_HEADER> 13 14 #include BOOST_GEOMETRY_TEST_INCLUDE_HEADER() 15 main()16int main() 17 { 18 return 0; 19 } 20