I have a char, a plain old character, that I would like to turn into an std::string. std::string(char) doesn\'t exist of course. I c
char
std::string
std::string(char)
just use the overload that takes a char?
i.e. string(1, 'A')
string(1, 'A')