2022-02-23 23:08:28 -05:00
|
|
|
#ifndef WRAP_SSTREAM_HPP
|
|
|
|
|
#define WRAP_SSTREAM_HPP
|
|
|
|
|
|
|
|
|
|
#include "two-mallocs.hpp"
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
|
|
namespace eng {
|
|
|
|
|
template<class C, class T=std::char_traits<C>>
|
2022-02-25 19:57:23 -05:00
|
|
|
using basic_ostringstream = std::basic_ostringstream<C, T, eng::allocator<C>>;
|
2022-02-24 02:17:41 -05:00
|
|
|
using ostringstream = basic_ostringstream<char>;
|
2022-02-23 23:08:28 -05:00
|
|
|
} // namespace eng
|
|
|
|
|
|
|
|
|
|
#endif // WRAP_SSTREAM_HPP
|