mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
[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:
@@ -34,10 +34,10 @@ cpu_id::cpu_id()
|
||||
__cpuid(cpuid_extended, 0, &m_high_ext);
|
||||
}
|
||||
|
||||
cpu_id::features
|
||||
cpu_id::validate() const
|
||||
features
|
||||
cpu_id::features() const
|
||||
{
|
||||
cpu_id::features feats;
|
||||
::cpu::features feats;
|
||||
uint32_t leaf = -1u;
|
||||
uint32_t sub = -1u;
|
||||
regs r;
|
||||
|
||||
Reference in New Issue
Block a user