How can I concatenate two stringstreams?
#include #include #include #include #include <
Just replace a << b with a << b.str()
a << b
a << b.str()