From fd9eab73fb73689d83c939b49bc65f838f71ea08 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 1 Apr 2018 17:43:40 -0400 Subject: CPUDetect: Make CPUVendor enum an enum class Avoids dumping the enum contents into the global namespace. --- Source/Core/Common/ArmCPUDetect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/ArmCPUDetect.cpp') diff --git a/Source/Core/Common/ArmCPUDetect.cpp b/Source/Core/Common/ArmCPUDetect.cpp index 9c85835c07..466a0a0741 100644 --- a/Source/Core/Common/ArmCPUDetect.cpp +++ b/Source/Core/Common/ArmCPUDetect.cpp @@ -57,7 +57,7 @@ void CPUInfo::Detect() OS64bit = true; CPU64bit = true; Mode64bit = true; - vendor = VENDOR_ARM; + vendor = CPUVendor::ARM; // Get the information about the CPU num_cores = sysconf(_SC_NPROCESSORS_CONF); -- cgit v1.2.3