summaryrefslogtreecommitdiff
path: root/Source/Core/Common/ArmCPUDetect.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-01 17:43:40 -0400
committerLioncash <mathew1800@gmail.com>2018-04-01 17:47:50 -0400
commitfd9eab73fb73689d83c939b49bc65f838f71ea08 (patch)
tree9985510053b86acf40bcf45227f36edfdcfa3732 /Source/Core/Common/ArmCPUDetect.cpp
parentbf8ffe5bfb50ce1d2aa969ea6cc1901dc79a85ec (diff)
CPUDetect: Make CPUVendor enum an enum class
Avoids dumping the enum contents into the global namespace.
Diffstat (limited to 'Source/Core/Common/ArmCPUDetect.cpp')
-rw-r--r--Source/Core/Common/ArmCPUDetect.cpp2
1 files changed, 1 insertions, 1 deletions
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);