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

14 lines
335 B
C++
Raw Normal View History

#ifndef WRAP_SSTREAM_HPP
#define WRAP_SSTREAM_HPP
2022-02-28 21:57:54 -05:00
#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