diff options
| author | JosJuice <josjuice@gmail.com> | 2018-04-02 09:17:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-02 09:17:34 +0200 |
| commit | 9d1c4401e5cbecf32b16b2b64ebc4715d5d4b15c (patch) | |
| tree | 9985510053b86acf40bcf45227f36edfdcfa3732 /Source/Core/Common/ArmCPUDetect.cpp | |
| parent | bf8ffe5bfb50ce1d2aa969ea6cc1901dc79a85ec (diff) | |
| parent | fd9eab73fb73689d83c939b49bc65f838f71ea08 (diff) | |
Merge pull request #6583 from lioncash/enum-class
CPUDetect: Make CPUVendor enum an enum class
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); |
