Skip to content

Instantly share code, notes, and snippets.

@stryku
Created July 12, 2017 19:36
Show Gist options
  • Save stryku/6d93fc68200a30fe7a6677d970ed5e04 to your computer and use it in GitHub Desktop.
Save stryku/6d93fc68200a30fe7a6677d970ed5e04 to your computer and use it in GitHub Desktop.
std::string toString(bool b)
{
return b ? "true" : "false";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment