Index: third_party/WebKit/Source/wtf/dtoa.cpp |
diff --git a/third_party/WebKit/Source/wtf/dtoa.cpp b/third_party/WebKit/Source/wtf/dtoa.cpp |
index dc143e6982a30969a2b89065eaf0572241ee652f..a0f46f83069bf67d3c1d667db17405a135ff16e7 100644 |
--- a/third_party/WebKit/Source/wtf/dtoa.cpp |
+++ b/third_party/WebKit/Source/wtf/dtoa.cpp |
@@ -80,7 +80,7 @@ static inline const char* formatStringTruncatingTrailingZerosIfNeeded( |
// If we removed all trailing zeros, remove the decimal point as well. |
if (truncatedLength == decimalPointPosition) { |
- ASSERT(truncatedLength > 0); |
+ DCHECK_GT(truncatedLength, 0u); |
--truncatedLength; |
} |