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

Unified Diff: core/src/fxcrt/fx_system_unittest.cpp

Issue 1418263003: Whitespace changes in fx_system_unittest.cpp to match XFA (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: rebase Created 5 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/src/fxcrt/fx_system_unittest.cpp
diff --git a/core/src/fxcrt/fx_system_unittest.cpp b/core/src/fxcrt/fx_system_unittest.cpp
index fec6063b0d10b4403d074d39f8fbc433af4ce805..824ed5370cf251dddd88ad9cd956b177a9a7c72b 100644
--- a/core/src/fxcrt/fx_system_unittest.cpp
+++ b/core/src/fxcrt/fx_system_unittest.cpp
@@ -129,12 +129,11 @@ TEST(fxcrt, FXSYS_i64toa_InvalidRadix) {
EXPECT_EQ(std::string(""), buf);
};
-
TEST(fxcrt, FXSYS_i64toa) {
- Check64BitBase16Itoa(
- std::numeric_limits<int64_t>::min(), "-8000000000000000");
- Check64BitBase10Itoa(
- std::numeric_limits<int64_t>::min(), "-9223372036854775808");
+ Check64BitBase16Itoa(std::numeric_limits<int64_t>::min(),
+ "-8000000000000000");
+ Check64BitBase10Itoa(std::numeric_limits<int64_t>::min(),
+ "-9223372036854775808");
Check64BitBase2Itoa(
std::numeric_limits<int64_t>::min(),
"-1000000000000000000000000000000000000000000000000000000000000000");
@@ -151,14 +150,12 @@ TEST(fxcrt, FXSYS_i64toa) {
Check64BitBase10Itoa(42, "42");
Check64BitBase2Itoa(42, "101010");
- Check64BitBase16Itoa(
- std::numeric_limits<int64_t>::max(), "7fffffffffffffff");
- Check64BitBase10Itoa(
- std::numeric_limits<int64_t>::max(), "9223372036854775807");
+ Check64BitBase16Itoa(std::numeric_limits<int64_t>::max(), "7fffffffffffffff");
+ Check64BitBase10Itoa(std::numeric_limits<int64_t>::max(),
+ "9223372036854775807");
Check64BitBase2Itoa(
std::numeric_limits<int64_t>::max(),
"111111111111111111111111111111111111111111111111111111111111111");
}
#endif // _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_
-
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698