14 lines
335 B
C++
14 lines
335 B
C++
#ifndef WRAP_SSTREAM_HPP
|
|
#define WRAP_SSTREAM_HPP
|
|
|
|
#include "eng-malloc.hpp"
|
|
#include <sstream>
|
|
|
|
namespace eng {
|
|
template<class C, class T=std::char_traits<C>>
|
|
using basic_ostringstream = std::basic_ostringstream<C, T, eng::allocator<C>>;
|
|
using ostringstream = basic_ostringstream<char>;
|
|
} // namespace eng
|
|
|
|
#endif // WRAP_SSTREAM_HPP
|