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/fxcrt/bytestring.h | |
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/fxcrt/bytestring.h')
-rw-r--r-- | core/fxcrt/bytestring.h | 2 |
1 files changed, 1 insertions, 1 deletions
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>; |