#ifndef SPROUT_UTILITY_STRING_IO_HPP #define SPROUT_UTILITY_STRING_IO_HPP #include #include #include namespace sprout { // // operator<< // template inline std::basic_ostream& operator<<(std::basic_ostream& lhs, sprout::basic_string_ref const& rhs) { return lhs << rhs.c_str(); } } // namespace sprout #endif // #ifndef SPROUT_UTILITY_STRING_IO_HPP