block_of_code: Replace cast with [[maybe_unused]] in DoesCpuSupport()

This commit is contained in:
Lioncash 2019-02-22 22:46:06 -05:00 committed by MerryMage
parent 1138ac3429
commit deb9dd4acc

View file

@ -310,11 +310,10 @@ void BlockOfCode::EnsurePatchLocationSize(CodePtr begin, size_t size) {
nop(size - current_size);
}
bool BlockOfCode::DoesCpuSupport(Xbyak::util::Cpu::Type type) const {
bool BlockOfCode::DoesCpuSupport([[maybe_unused]] Xbyak::util::Cpu::Type type) const {
#ifdef DYNARMIC_ENABLE_CPU_FEATURE_DETECTION
return cpu_info.has(type);
#else
(void)type;
return false;
#endif
}