| 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
|
|
|