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

Unified Diff: runtime/vm/cpu_dbc.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_arm64.cc ('k') | runtime/vm/cpu_ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/cpu_dbc.h
diff --git a/runtime/vm/cpu_dbc.h b/runtime/vm/cpu_dbc.h
index e42cc1c94abd332b462d74cae74be2769e18bc26..a5cf4ee0e5d5c1fbac59d9b51f3e16574d0fd4aa 100644
--- a/runtime/vm/cpu_dbc.h
+++ b/runtime/vm/cpu_dbc.h
@@ -10,7 +10,7 @@
namespace dart {
-class HostCPUFeatures: public AllStatic {
+class HostCPUFeatures : public AllStatic {
public:
static void InitOnce();
static void Cleanup();
@@ -29,20 +29,12 @@ class HostCPUFeatures: public AllStatic {
class TargetCPUFeatures : public AllStatic {
public:
- static void InitOnce() {
- HostCPUFeatures::InitOnce();
- }
- static void Cleanup() {
- HostCPUFeatures::Cleanup();
- }
+ static void InitOnce() { HostCPUFeatures::InitOnce(); }
+ static void Cleanup() { HostCPUFeatures::Cleanup(); }
- static const char* hardware() {
- return CPU::Id();
- }
+ static const char* hardware() { return CPU::Id(); }
- static bool double_truncate_round_supported() {
- return true;
- }
+ static bool double_truncate_round_supported() { return true; }
};
} // namespace dart
« no previous file with comments | « runtime/vm/cpu_arm64.cc ('k') | runtime/vm/cpu_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698