diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-04-01 17:43:40 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-04-01 17:47:50 -0400 |
| commit | fd9eab73fb73689d83c939b49bc65f838f71ea08 (patch) | |
| tree | 9985510053b86acf40bcf45227f36edfdcfa3732 /Source/Core/Common/ArmCPUDetect.cpp | |
| parent | bf8ffe5bfb50ce1d2aa969ea6cc1901dc79a85ec (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.cpp | 2 |
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); |
