replaced stream-based number formatting

embedded a portion of double-conversion library
(http://code.google.com/p/double-conversion/)and replaced stream-based
number formatting
This commit is contained in:
aleks-f
2012-11-25 21:36:29 -06:00
parent 9cd0f0b4f7
commit 91d5be438b
45 changed files with 6631 additions and 972 deletions

View File

@@ -71,6 +71,8 @@ public:
void benchmarkStrToInt();
void testIntToString();
void testFloatToString();
void benchmarkFloatToStr();
void setUp();
void tearDown();
@@ -132,7 +134,6 @@ private:
istr >> value;
return istr.eof() && !istr.fail();
}
};