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

Unified Diff: Source/wtf/dtoa/fast-dtoa.h

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months 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/double-conversion.h ('k') | Source/wtf/dtoa/fixed-dtoa.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/dtoa/fast-dtoa.h
diff --git a/Source/wtf/dtoa/fast-dtoa.h b/Source/wtf/dtoa/fast-dtoa.h
index 876a9f38256d2fb0023f8e08db581a89038b2713..fc8d14558d10ff6b9eb584d200e4db022abb1f9a 100644
--- a/Source/wtf/dtoa/fast-dtoa.h
+++ b/Source/wtf/dtoa/fast-dtoa.h
@@ -33,7 +33,7 @@
namespace WTF {
namespace double_conversion {
-
+
enum FastDtoaMode {
// Computes the shortest representation of the given input. The returned
// result will be the most accurate number of this length. Longer
@@ -43,11 +43,11 @@ namespace double_conversion {
// given as input. The precision is independent of the decimal point.
FAST_DTOA_PRECISION
};
-
+
// FastDtoa will produce at most kFastDtoaMaximalLength digits. This does not
// include the terminating '\0' character.
static const int kFastDtoaMaximalLength = 17;
-
+
// Provides a decimal representation of v.
// The result should be interpreted as buffer * 10^(point - length).
//
@@ -80,7 +80,7 @@ namespace double_conversion {
Vector<char> buffer,
int* length,
int* decimal_point);
-
+
} // namespace double_conversion
} // namespace WTF
« no previous file with comments | « Source/wtf/dtoa/double-conversion.h ('k') | Source/wtf/dtoa/fixed-dtoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698