Index: runtime/vm/cpu_mips.h |
diff --git a/runtime/vm/cpu_mips.h b/runtime/vm/cpu_mips.h |
index b9dde4da020a7e25032b1f7b1205679c4c91c173..8af35b8826f1cd859d62d479d9a7b8838d7cf733 100644 |
--- a/runtime/vm/cpu_mips.h |
+++ b/runtime/vm/cpu_mips.h |
@@ -23,7 +23,7 @@ enum MIPSVersion { |
MIPSvUnknown, |
}; |
-class HostCPUFeatures: public AllStatic { |
+class HostCPUFeatures : public AllStatic { |
public: |
static void InitOnce(); |
static void Cleanup(); |
@@ -46,21 +46,11 @@ 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 MIPSVersion mips_version() { |
- return HostCPUFeatures::mips_version(); |
- } |
+ 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 MIPSVersion mips_version() { return HostCPUFeatures::mips_version(); } |
}; |
} // namespace dart |