]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/interprocess/test/iunordered_set_index_allocation_test.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / interprocess / test / iunordered_set_index_allocation_test.cpp
CommitLineData
7c673cae
FG
1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2006-2012. 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/interprocess for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10
11#include <boost/interprocess/detail/config_begin.hpp>
12#include <boost/interprocess/indexes/iunordered_set_index.hpp>
13#include "named_allocation_test_template.hpp"
14
15int main ()
16{
17 using namespace boost::interprocess;
18 if(!test::test_named_allocation<iunordered_set_index>()){
19 return 1;
20 }
21
22 return 0;
23}
24
25#include <boost/interprocess/detail/config_end.hpp>