Files
integration/luprex/core/wrap/wrap-sstream.hpp

14 lines
336 B
C++
Raw Normal View History

#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>>
using basic_ostringstream = std::basic_ostringstream<C, T, eng::allocator<C>>;
using ostringstream = basic_ostringstream<char>;
} // namespace eng
#endif // WRAP_SSTREAM_HPP