Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(481)

Unified Diff: Source/wtf/dtoa/fixed-dtoa.cc

Issue 34273002: Remove UnusedParam.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/dtoa/cached-powers.cc ('k') | Source/wtf/wtf.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/dtoa/fixed-dtoa.cc
diff --git a/Source/wtf/dtoa/fixed-dtoa.cc b/Source/wtf/dtoa/fixed-dtoa.cc
index f59d37cd649d17e6608ef444547e3ddd304b9cb4..f0a40803ebebe7edd6dcaa383db8202f0488d260 100644
--- a/Source/wtf/dtoa/fixed-dtoa.cc
+++ b/Source/wtf/dtoa/fixed-dtoa.cc
@@ -31,7 +31,6 @@
#include "double.h"
#include "fixed-dtoa.h"
-#include "wtf/UnusedParam.h"
namespace WTF {
@@ -155,9 +154,8 @@ namespace double_conversion {
}
- static void FillDigits64FixedLength(uint64_t number, int requested_length,
+ static void FillDigits64FixedLength(uint64_t number, int,
Vector<char> buffer, int* length) {
- UNUSED_PARAM(requested_length);
const uint32_t kTen7 = 10000000;
// For efficiency cut the number into 3 uint32_t parts, and print those.
uint32_t part2 = static_cast<uint32_t>(number % kTen7);
« no previous file with comments | « Source/wtf/dtoa/cached-powers.cc ('k') | Source/wtf/wtf.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698