i know its crazy, but attempt performance gains by avoiding use of int64 as much as possible.

This commit is contained in:
Mark Vejvoda
2013-11-03 07:18:27 +00:00
parent f461504541
commit 8d4f5a9f40
4 changed files with 34 additions and 12 deletions

View File

@@ -33,8 +33,8 @@ bool strToUInt(const string &s, uint32 *i);
bool strToFloat(const string &s, float *f);
string boolToStr(bool b);
string uIntToStr(uint32 i);
string intToStr(int64 i);
string uIntToStr(const uint64 &value);
string intToStr(const int64 &value);
string intToHex(int i);
string floatToStr(float f,int precsion=2);
string doubleToStr(double f,int precsion=2);