]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/uuid/test/compile/decl_header.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / uuid / test / compile / decl_header.cpp
1 /*
2 * Copyright Andrey Semashev 2015.
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 decl_header.cpp
9 * \author Andrey Semashev
10 * \date 21.06.2015
11 *
12 * \brief This file contains a test boilerplate for checking that every
13 * public header is self-contained and does not have any missing
14 * #includes.
15 */
16
17 #define BOOST_UUID_TEST_INCLUDE_HEADER() <boost/uuid/BOOST_UUID_TEST_HEADER>
18
19 #include BOOST_UUID_TEST_INCLUDE_HEADER()
20
21 int main(int, char*[])
22 {
23 return 0;
24 }