mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
20 lines
546 B
C++
20 lines
546 B
C++
|
#ifndef SPROUT_UTILITY_STRING_IO_HPP
|
||
|
#define SPROUT_UTILITY_STRING_IO_HPP
|
||
|
|
||
|
#include <ios>
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/utility/string_ref/string_ref.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
//
|
||
|
// operator<<
|
||
|
//
|
||
|
template<typename T, typename Traits, typename StreamTraits>
|
||
|
inline std::basic_ostream<T, StreamTraits>&
|
||
|
operator<<(std::basic_ostream<T, StreamTraits>& lhs, sprout::basic_string_ref<T, Traits> const& rhs) {
|
||
|
return lhs << rhs.c_str();
|
||
|
}
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_UTILITY_STRING_IO_HPP
|