mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 13:31:27 +08:00
15 lines
556 B
Diff
15 lines
556 B
Diff
|
diff --git a/include/Fourier.h b/include/Fourier.h
|
||
|
index af55d2a..4283be8 100644
|
||
|
--- a/include/Fourier.h
|
||
|
+++ b/include/Fourier.h
|
||
|
@@ -13,7 +13,8 @@
|
||
|
//==============================================================================
|
||
|
// FORWARD DECLARATION
|
||
|
//==============================================================================
|
||
|
-namespace std { template<class T> class complex; }
|
||
|
+#include <complex>
|
||
|
+
|
||
|
#define SQUARE(real,imag) sqrt((real)*(real)+(imag)*(imag))
|
||
|
|
||
|
//==============================================================================
|