You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<iostream>
#include<string>
#include<sstream>
std::ostream& operator< (std::ostream& dest, const std::string& what) {
return dest;
}
intmain ()
{
std::string a, b, c, d, e, f;
std::stringstream dest;
dest < a < b < c < d < e < f;
}
Parsing of the below rare use case is still slow. (leftover #1685)
still slow:
fast:
The text was updated successfully, but these errors were encountered: