Make CTL definitions less ambiguous

This commit is contained in:
Justine Tunney 2024-07-01 03:48:28 -07:00
parent 239f8ce76e
commit acbabedf27
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
30 changed files with 176 additions and 173 deletions

View file

@ -20,7 +20,7 @@ class ostream : public ios
ostream& operator<<(int);
ostream& operator<<(long);
ostream& operator<<(double);
ostream& operator<<(const string_view&);
ostream& operator<<(const ctl::string_view&);
ostream& operator<<(bool);
ostream& operator<<(ostream& (*)(ostream&));