From d78430215961a27d87325203143fb9d96b95492e Mon Sep 17 00:00:00 2001 From: Bernhard Manfred Gruber Date: Mon, 30 May 2022 09:38:33 +0200 Subject: [PATCH] Add missing vectorcall to isImplementationSupported This fixes a downstream build failure with vcpkg for triplet x64-uwp. See PR: https://github.com/microsoft/vcpkg/pull/24880 --- src/support_x86.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support_x86.cpp b/src/support_x86.cpp index 0ab966957..bdc1293de 100644 --- a/src/support_x86.cpp +++ b/src/support_x86.cpp @@ -59,7 +59,7 @@ static inline bool xgetbvCheck(unsigned int bits) } Vc_TARGET_NO_SIMD -bool isImplementationSupported(Implementation impl) +bool Vc_VDECL isImplementationSupported(Implementation impl) { CpuId::init();