mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-23 12:50:06 +00:00
Fix incorrect operator<<() argument type that gives build error.
This commit is contained in:
parent
7149b3cb29
commit
a32289dc70
@ -444,7 +444,7 @@ inline bool operator>=(const discard_comments&, const discard_comments&) noexcep
|
||||
|
||||
inline void swap(const discard_comments&, const discard_comments&) noexcept {return;}
|
||||
|
||||
inline std::ostream& operator<<(std::ostream&& os, const discard_comments&) {return os;}
|
||||
inline std::ostream& operator<<(std::ostream& os, const discard_comments&) {return os;}
|
||||
|
||||
} // toml11
|
||||
#endif // TOML11_COMMENTS_FWD_HPP
|
||||
|
Loading…
Reference in New Issue
Block a user