ocarina/core/string.cpp

14 lines
204 B
C++
Raw Normal View History

/**
* @file
* Copyright 2015 (c) Anna Schumaker.
*/
#include <core/string.h>
#include <sstream>
const std::string string :: utos(unsigned int u)
{
std::stringstream ss;
ss << u;
return ss.str();
}