From 9778206732296e949ef22a79362c6bce34a56052 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Fri, 7 Aug 2015 15:28:21 -0700 Subject: Fix FXSYS_itoa() implementation. I thought about removing it, but decided to fix it instead until c++11 hits and there may be better alternatives. Remove unused variants. BUG=517854 R=brucedawson@chromium.org, thestig@chromium.org Review URL: https://codereview.chromium.org/1274423003 . --- core/include/fxcrt/fx_system.h | 1 - 1 file changed, 1 deletion(-) (limited to 'core/include') diff --git a/core/include/fxcrt/fx_system.h b/core/include/fxcrt/fx_system.h index f0d403501c..ad63d56829 100644 --- a/core/include/fxcrt/fx_system.h +++ b/core/include/fxcrt/fx_system.h @@ -268,7 +268,6 @@ int32_t FXSYS_wtoi(const FX_WCHAR* str); int64_t FXSYS_atoi64(const FX_CHAR* str); int64_t FXSYS_wtoi64(const FX_WCHAR* str); const FX_CHAR* FXSYS_i64toa(int64_t value, FX_CHAR* str, int radix); -const FX_WCHAR* FXSYS_i64tow(int64_t value, FX_WCHAR* str, int radix); int FXSYS_round(FX_FLOAT f); #define FXSYS_Mul(a, b) ((a) * (b)) #define FXSYS_Div(a, b) ((a) / (b)) -- cgit v1.2.3