cpuid: connect the 'none' provider

This commit is contained in:
Danny Robson 2019-02-02 17:01:03 +11:00
parent 3a518fbac8
commit 54df664071

View File

@ -29,7 +29,7 @@ namespace cruft::cpu {
#if defined(PROCESSOR_AMD64)
#include "cpuid/x86.hpp"
#else
#error "Unhandled architecture"
#include "cpuid/none.hpp"
#endif
@ -37,6 +37,6 @@ namespace cruft::cpu {
#if defined(PROCESSOR_AMD64)
using native = x86;
#else
#error "Unhandled architecture"
using native = none;
#endif
}