blob: aa9c553f0a42dde69e8cb1c8502e3abb1678f5b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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))
//==============================================================================
|