From 9011ff82bc16cdd4493c2e2420a30a692723b13a Mon Sep 17 00:00:00 2001 From: Johannes Demel Date: Sun, 10 Oct 2021 20:29:08 +0200 Subject: [PATCH] complex: Add more references It is difficult to get MSVC to compile with complex numbers. Add more referenceses to sources that explain the reasons. Signed-off-by: Johannes Demel --- include/volk/volk_complex.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/volk/volk_complex.h b/include/volk/volk_complex.h index 6ff4f4bc7..96d99405f 100644 --- a/include/volk/volk_complex.h +++ b/include/volk/volk_complex.h @@ -50,6 +50,7 @@ typedef double _Complex lv_64fc_t; // https://docs.microsoft.com/en-us/cpp/c-runtime-library/complex-math-support?view=msvc-160 // Refer to `complex.h` in // https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk/ +// https://github.com/microsoft/STL/blob/main/stl/inc/complex typedef _Fcomplex lv_32fc_t; typedef _Dcomplex lv_64fc_t;