////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2015-2015. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/container for documentation. // ////////////////////////////////////////////////////////////////////////////// #include template class ::boost::container::basic_string; volatile ::boost::container::basic_string dummy; #include #include "dummy_test_allocator.hpp" namespace boost { namespace container { typedef test::simple_allocator SimpleCharAllocator; typedef basic_string, SimpleCharAllocator> SimpleString; typedef test::simple_allocator SimpleStringAllocator; typedef test::simple_allocator SimpleWCharAllocator; typedef basic_string, SimpleWCharAllocator> SimpleWString; typedef test::simple_allocator SimpleWStringAllocator; //Explicit instantiations of container::basic_string template class basic_string, SimpleCharAllocator>; template class basic_string, SimpleWCharAllocator>; template class basic_string, std::allocator >; template class basic_string, std::allocator >; //Explicit instantiation of container::vectors of container::strings template class vector; template class vector; }} int main() { return 0; }