Merge pull request #430 from lioncash/unused

block_of_code: Replace cast with [[maybe_unused]] in DoesCpuSupport()
This commit is contained in:
Merry 2019-02-23 11:37:35 +00:00 committed by MerryMage
commit 20fabc5083

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
}