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

Unified Diff: Source/wtf/dtoa/bignum-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/bignum.h ('k') | Source/wtf/dtoa/cached-powers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/dtoa/bignum-dtoa.h
diff --git a/Source/wtf/dtoa/bignum-dtoa.h b/Source/wtf/dtoa/bignum-dtoa.h
index 0761687091c00b93f087640358e398907d0d4a95..05a7524b7cea46da139295d2af0951ddcf5512fe 100644
--- a/Source/wtf/dtoa/bignum-dtoa.h
+++ b/Source/wtf/dtoa/bignum-dtoa.h
@@ -33,7 +33,7 @@
namespace WTF {
namespace double_conversion {
-
+
enum BignumDtoaMode {
// Return the shortest correct representation.
// For example the output of 0.299999999999999988897 is (the less accurate but
@@ -46,7 +46,7 @@ namespace double_conversion {
// Return a fixed number of digits, no matter what the exponent is.
BIGNUM_DTOA_PRECISION
};
-
+
// Converts the given double 'v' to ascii.
// The result should be interpreted as buffer * 10^(point-length).
// The buffer will be null-terminated.
@@ -78,7 +78,7 @@ namespace double_conversion {
// and a terminating null-character.
void BignumDtoa(double v, BignumDtoaMode mode, int requested_digits,
Vector<char> buffer, int* length, int* point);
-
+
} // namespace double_conversion
} // namespace WTF
« no previous file with comments | « Source/wtf/dtoa/bignum.h ('k') | Source/wtf/dtoa/cached-powers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698