diff options
author | Lei Zhang <thestig@chromium.org> | 2017-11-07 14:04:19 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 14:04:19 +0000 |
commit | 80f046b41bb0c85fc18dc68d89be8469f3dab434 (patch) | |
tree | 86fefa8496aed39a7acd0ca9a9f49631bf2f5d04 /core | |
parent | 064a3e108b2a2aefde6e0be5f7246b02af6f8aab (diff) | |
download | pdfium-80f046b41bb0c85fc18dc68d89be8469f3dab434.tar.xz |
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 <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fxcrt/bytestring.cpp | 2 | ||||
-rw-r--r-- | 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<char>; |