An answer to one of my questions included the following line of code:
label = std::safe_string(name); // label is a std::string
The intent seems to be a wrapper around a string literal (so presumably no allocation takes place). I've never heard of safe_string
and neither, apparently, has google (nor could I find it in the 98 standard).
Does anyone know what this is about?