Tagged Questions
4
votes
4answers
625 views
Returning c_str from a function
This is from a small library that I found online:
const char* GetHandStateBrief(const PostFlopState* state)
{
static std::ostringstream out;
... rest of the function ...
return ...