]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/date_time/test/self_contained_header.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / date_time / test / self_contained_header.cpp
1 /*
2 * Copyright Andrey Semashev 2020.
3 * Distributed under the Boost Software License, Version 1.0.
4 * (See accompanying file LICENSE_1_0.txt or copy at
5 * http://www.boost.org/LICENSE_1_0.txt)
6 */
7 /*!
8 * \file self_contained_header.cpp
9 * \author Andrey Semashev
10 * \date 04.04.2020
11 *
12 * \brief This file contains a test boilerplate for checking that every public header is self-contained and does not have any missing #includes.
13 */
14
15 #define BOOST_DATE_TIME_TEST_INCLUDE_HEADER() <boost/BOOST_DATE_TIME_TEST_HEADER>
16
17 #include BOOST_DATE_TIME_TEST_INCLUDE_HEADER()
18
19 int main(int, char*[])
20 {
21 return 0;
22 }