From: Adam Sampson Date: Sun, 14 Oct 2018 14:04:18 +0200 Subject: detect512 is needed on all architectures --- source/common/cpu.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff -rauN a/source/common/cpu.cpp b/source/common/cpu.cpp --- a/source/common/cpu.cpp 2019-02-28 16:19:18.243333277 +0100 +++ b/source/common/cpu.cpp 2019-02-28 16:20:11.489999939 +0100 @@ -110,6 +110,11 @@ { "", 0 }, }; +bool detect512() +{ + return(enable512); +} + #if X265_ARCH_X86 extern "C" { @@ -123,11 +128,6 @@ #pragma warning(disable: 4309) // truncation of constant value #endif -bool detect512() -{ - return(enable512); -} - uint32_t cpu_detect(bool benableavx512 ) {