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

Unified Diff: Source/wtf/dtoa/diy-fp.cc

Issue 20652002: Fix trailing whitespace in scripts and misc. files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Don't change literal diff. 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/cached-powers.cc ('k') | Source/wtf/dtoa/double-conversion.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/dtoa/diy-fp.cc
diff --git a/Source/wtf/dtoa/diy-fp.cc b/Source/wtf/dtoa/diy-fp.cc
index c0233595f98ba26ccb43aa94487837d63d5a7529..e6a6661444a612bc5e3cc572eb848ca673cda45a 100644
--- a/Source/wtf/dtoa/diy-fp.cc
+++ b/Source/wtf/dtoa/diy-fp.cc
@@ -33,7 +33,7 @@
namespace WTF {
namespace double_conversion {
-
+
void DiyFp::Multiply(const DiyFp& other) {
// Simply "emulates" a 128 bit multiplication.
// However: the resulting number only contains 64 bits. The least
@@ -56,7 +56,7 @@ namespace double_conversion {
e_ += other.e_ + 64;
f_ = result_f;
}
-
+
} // namespace double_conversion
} // namespace WTF
« no previous file with comments | « Source/wtf/dtoa/cached-powers.cc ('k') | Source/wtf/dtoa/double-conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698