Brian Silverman | fad8f55 | 2018-08-04 23:36:19 -0700 | [diff] [blame^] | 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/string.hpp> |
| 12 | |
| 13 | template class ::boost::container::basic_string<char>; |
| 14 | |
| 15 | int main() |
| 16 | { |
| 17 | ::boost::container::basic_string<char> dummy; |
| 18 | (void)dummy; |
| 19 | return 0; |
| 20 | } |