7 lines
135 B
C++
7 lines
135 B
C++
|
|
#include "util.h"
|
||
|
|
|
||
|
|
std::string intToString(int theInt) {
|
||
|
|
std::stringstream converter;
|
||
|
|
converter << theInt;
|
||
|
|
return converter.str();
|
||
|
|
}
|