mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
netlist: choose the right ostream type. (nw)
This commit is contained in:
parent
a0f4b5adf1
commit
9cefd516a0
@ -194,7 +194,7 @@ public:
|
||||
bool operator>(const pstring_t &string) const { return (compare(string) > 0); }
|
||||
bool operator>=(const pstring_t &string) const { return (compare(string) >= 0); }
|
||||
|
||||
friend std::ostream& operator<<(std::ostream &ostrm, const pstring_t &str)
|
||||
friend auto operator<<(std::basic_ostream<typename string_type::value_type> &ostrm, const pstring_t &str) -> std::basic_ostream<typename string_type::value_type> &
|
||||
{
|
||||
ostrm << str.m_str;
|
||||
return ostrm;
|
||||
|
Loading…
Reference in New Issue
Block a user