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 |