From 80f046b41bb0c85fc18dc68d89be8469f3dab434 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Tue, 7 Nov 2017 14:04:19 +0000 Subject: Remove unused parameter from ByteString::FormatFloat(). Nobody sets |precision| and the method does not read it either. Change-Id: I0f45fe953c005f817d331cbf73e38f7b15a77b81 Reviewed-on: https://pdfium-review.googlesource.com/17890 Commit-Queue: dsinclair Reviewed-by: dsinclair --- core/fxcrt/bytestring.cpp | 2 +- core/fxcrt/bytestring.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/fxcrt/bytestring.cpp b/core/fxcrt/bytestring.cpp index 704cdd46aa..ad3814b57e 100644 --- a/core/fxcrt/bytestring.cpp +++ b/core/fxcrt/bytestring.cpp @@ -783,7 +783,7 @@ void ByteString::TrimLeft() { TrimLeft("\x09\x0a\x0b\x0c\x0d\x20"); } -ByteString ByteString::FormatFloat(float d, int precision) { +ByteString ByteString::FormatFloat(float d) { char buf[32]; return ByteString(buf, FX_ftoa(d, buf)); } diff --git a/core/fxcrt/bytestring.h b/core/fxcrt/bytestring.h index 6d5843efcd..f534b08b8a 100644 --- a/core/fxcrt/bytestring.h +++ b/core/fxcrt/bytestring.h @@ -182,7 +182,7 @@ class ByteString { uint32_t GetID() const { return AsStringView().GetID(); } static ByteString FormatInteger(int i); - static ByteString FormatFloat(float f, int precision = 0); + static ByteString FormatFloat(float f); protected: using StringData = StringDataTemplate; -- cgit v1.2.3