2
0
mirror of https://github.com/boostorg/scope.git synced 2026-01-26 07:02:09 +00:00
Files
scope/test/compile/self_contained_header.cpp
Andrey Semashev 9f55473af2 Initial commit.
2023-01-10 02:18:35 +03:00

22 lines
610 B
C++

/*
* Copyright Andrey Semashev 2023.
* 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)
*/
/*!
* \file self_contained_header.cpp
* \author Andrey Semashev
*
* \brief This file contains a test boilerplate for checking that every public header is self-contained and does not have any missing #includes.
*/
#define BOOST_SCOPE_TEST_INCLUDE_HEADER() <boost/scope/BOOST_SCOPE_TEST_HEADER>
#include BOOST_SCOPE_TEST_INCLUDE_HEADER()
int main(int, char*[])
{
return 0;
}