[cpu] Rename cpu_id::validate() to cpu_id::features()

Validate wasn't a correct name anymore. Also move the features enum out
of the cpu_id class scope and into the `cpu` namespace directly.
This commit is contained in:
Justin C. Miller
2023-03-16 19:41:07 -07:00
parent 201e7191ef
commit bfab4f085e
6 changed files with 51 additions and 22 deletions

View File

@@ -79,7 +79,7 @@ check_cpu_supported()
status_line status {L"Checking CPU features"};
cpu::cpu_id cpu;
cpu::cpu_id::features features = cpu.validate();
cpu::features features = cpu.features();
bool supported = true;
#define CPU_FEATURE_OPT(...)