Is it possible to overload conversion operator from int to std::string? Is it possible to use this function:
void printToLog(std::string text); Like this:
int a = 5; printToLog(a); Or this:
int a = 5; printToLog(a + " bombs have been planted."); ?