fixup: travis: Test with disabled CPU feature detection

This commit is contained in:
MerryMage 2018-01-24 19:14:19 +00:00
parent 5281d3c6d5
commit 01a26fa644

View file

@ -238,6 +238,7 @@ bool BlockOfCode::DoesCpuSupport(Xbyak::util::Cpu::Type type) const {
#ifdef DYNARMIC_ENABLE_CPU_FEATURE_DETECTION #ifdef DYNARMIC_ENABLE_CPU_FEATURE_DETECTION
return cpu_info.has(type); return cpu_info.has(type);
#else #else
(void)type;
return false; return false;
#endif #endif
} }