]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/container/test/pmr_static_vector_test.cpp
buildsys: change download over to reef release
[ceph.git] / ceph / src / boost / libs / container / test / pmr_static_vector_test.cpp
CommitLineData
7c673cae
FG
1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2015-2015. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7// See http://www.boost.org/libs/container for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10
11#include <boost/container/static_vector.hpp>
12
13struct empty
14{
15 friend bool operator == (const empty &, const empty &){ return true; }
16 friend bool operator < (const empty &, const empty &){ return true; }
17};
18
19template class ::boost::container::static_vector<empty, 2>;
20
21int main()
22{
23 ::boost::container::static_vector<empty, 2> dummy;
24 (void)dummy;
25 return 0;
26}