Files
integration/luprex/core/wrap/wrap-sstream.hpp
2022-02-28 21:57:54 -05:00

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