Fix up the replay proxy serialising functions

* Also add some compile time asserts to try and help keep them working.
This commit is contained in:
baldurk
2015-01-28 12:34:12 +00:00
parent 1b4bf97574
commit c9f106b0cb
4 changed files with 450 additions and 175 deletions
+10
View File
@@ -1038,6 +1038,16 @@ string ToStrHelper<false, void *>::Get(void* const &el)
return tostrBuf;
}
template<>
string ToStrHelper<false, int64_t>::Get(const int64_t &el)
{
char tostrBuf[256] = {0};
StringFormat::snprintf(tostrBuf, 255, "%lld", el);
return tostrBuf;
}
template<>
string ToStrHelper<false, uint64_t>::Get(const uint64_t &el)
{