#include <string>
#include <boost/container/string.hpp>
#include <metall/metall.hpp>
Go to the source code of this file.
|
template<class CharT , class Traits = std::char_traits<CharT>, class Allocator = metall::manager::allocator_type<CharT>> |
using | metall::container::basic_string = boost::container::basic_string< CharT, Traits, Allocator > |
| A string container that uses Metall as its default allocator. More...
|
|
using | metall::container::string = basic_string< char > |
| A string container that uses char as its character type and Metall as its default allocator. More...
|
|
using | metall::container::wstring = basic_string< wchar_t > |
| A string container that uses wchar_t as its character type and Metall as its default allocator. More...
|
|