clearing stringstream

I want to empty a stringstream but I didnt find anything in the "Reference".
That should do the trick:
1
2
3
std::stringstream ss;
// do sth with ss
ss.str("");
Topic archived. No new replies allowed.