[cleanup] clang-format base.
Produced with:
find base -name \"*.cc\" -o -name \"*.h\" -o -name \"*.mm\" | xargs clang-format -i
base/third_party was then manually reset.
[email protected]
NO_IFTTT=Reformat only
Bug: none
Change-Id: Ie567eb767d41315fd60e8a17c6aee8a90ff6a3ec
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6117971
Commit-Queue: Peter Kasting <[email protected]>
Owners-Override: Peter Boström <[email protected]>
Auto-Submit: Peter Kasting <[email protected]>
Reviewed-by: Peter Boström <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1400624}
diff --git a/base/security_unittest.cc b/base/security_unittest.cc
index 30a8ed44..648a324 100644
--- a/base/security_unittest.cc
+++ b/base/security_unittest.cc
@@ -40,7 +40,7 @@
#if defined(__GNUC__)
// In a GCC compatible compiler (GCC or Clang), make this compiler barrier
// more robust.
- __asm__ volatile ("" : "+r" (value));
+ __asm__ volatile("" : "+r"(value));
#endif // __GNUC__
return value;
}
@@ -54,8 +54,7 @@
BUILDFLAG(IS_APPLE)
// Sadly, on Linux, Android, and OSX we don't have a good story yet. Don't
// fail the test, but report.
- printf("Platform has overflow: %s\n",
- !overflow_detected ? "yes." : "no.");
+ printf("Platform has overflow: %s\n", !overflow_detected ? "yes." : "no.");
#else
// Otherwise, fail the test. (Note: EXPECT are ok in subfunctions, ASSERT
// aren't).