Revert "Merge pull request #47 from lioncash/remove-stringfromint"

Breaks Android build.

This reverts commit 12d026c544, reversing
changes made to 6d678490f5.
This commit is contained in:
Pierre Bourdon
2014-02-07 00:26:33 +01:00
parent 12d026c544
commit 70e2ed320d
3 changed files with 9 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public:
void Set(const char* key, int newValue, int defaultValue);
void Set(const char* key, int newValue) {
Set(key, std::to_string(newValue).c_str());
Set(key, StringFromInt(newValue).c_str());
}
void Set(const char* key, bool newValue, bool defaultValue);