Add some needed ToStr implementations

This commit is contained in:
baldurk
2016-02-27 17:51:19 +01:00
parent ba36dec115
commit a347b54be4
7 changed files with 76 additions and 8 deletions
+6
View File
@@ -1884,6 +1884,12 @@ string ToStrHelper<false, uint32_t>::Get(const uint32_t &el)
return tostrBuf;
}
template<>
string ToStrHelper<false, long>::Get(const long &el)
{
return ToStr::Get((uint64_t)el);
}
template<>
string ToStrHelper<false, char>::Get(const char &el)
{