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

Unified Diff: runtime/vm/cpu_arm64.h

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month 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 | « runtime/vm/cpu_arm.cc ('k') | runtime/vm/cpu_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/cpu_arm64.h
diff --git a/runtime/vm/cpu_arm64.h b/runtime/vm/cpu_arm64.h
index 89799eace6a0dec26186f77cc8ea6bc8be53da89..df920d39a992590e16f19628dd0197e05d4fb499 100644
--- a/runtime/vm/cpu_arm64.h
+++ b/runtime/vm/cpu_arm64.h
@@ -18,7 +18,7 @@ namespace dart {
// additionally mock the options needed for the target architecture so that
// they may be altered for testing.
-class HostCPUFeatures: public AllStatic {
+class HostCPUFeatures : public AllStatic {
public:
static void InitOnce();
static void Cleanup();
@@ -36,18 +36,10 @@ class HostCPUFeatures: public AllStatic {
class TargetCPUFeatures : public AllStatic {
public:
- static void InitOnce() {
- HostCPUFeatures::InitOnce();
- }
- static void Cleanup() {
- HostCPUFeatures::Cleanup();
- }
- static const char* hardware() {
- return HostCPUFeatures::hardware();
- }
- static bool double_truncate_round_supported() {
- return false;
- }
+ static void InitOnce() { HostCPUFeatures::InitOnce(); }
+ static void Cleanup() { HostCPUFeatures::Cleanup(); }
+ static const char* hardware() { return HostCPUFeatures::hardware(); }
+ static bool double_truncate_round_supported() { return false; }
};
} // namespace dart
« no previous file with comments | « runtime/vm/cpu_arm.cc ('k') | runtime/vm/cpu_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698