• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include <boost/interprocess/indexes/iset_index.hpp>
11 #include "named_allocation_test_template.hpp"
12 
main()13 int main ()
14 {
15    using namespace boost::interprocess;
16    if(!test::test_named_allocation<iset_index>()){
17       return 1;
18    }
19 
20    return 0;
21 }
22