Tagged Questions
7
votes
7answers
3k views
C++ format macro / inline ostringstream
I'm trying to write a macro that would allow me to do something like: FORMAT(a << "b" << c << d), and the result would be a string -- the same as creating an ostringstream, inserting ...