overloads for all int types are tricky

This commit is contained in:
Thomas Fussell 2015-11-07 20:07:22 -05:00
parent fd29588702
commit 7d2e641966

View File

@ -99,7 +99,7 @@ string string::from(std::uint64_t i)
return string(std::to_string(i).c_str());
}
#ifndef _MSC_VER
#ifdef __APPLE__
template<>
string string::from(std::size_t i)
{