aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/src/FFT
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-12-12 11:44:30 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-12-12 11:44:30 +0000
commit9cd4f67e7f84662ac31f4a6b3f85a3b96f742053 (patch)
treee112be007440a9c4903e9e68496bc51639bcd63b /unsupported/Eigen/src/FFT
parente05c79cbd868f1f9affb0348873579e5bbe67bd4 (diff)
Specify root namespace for fftw_plan from FFTW3 library.
After changeset 4716040703be1ee906439385d20475dcddad5ce3 (the ei_ --> internal:: change), there are two symbols called fftw_plan, one from the FFTW3 library and one from Eigen.
Diffstat (limited to 'unsupported/Eigen/src/FFT')
-rw-r--r--unsupported/Eigen/src/FFT/ei_fftw_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/src/FFT/ei_fftw_impl.h b/unsupported/Eigen/src/FFT/ei_fftw_impl.h
index 84e4fcda5..a06f6739e 100644
--- a/unsupported/Eigen/src/FFT/ei_fftw_impl.h
+++ b/unsupported/Eigen/src/FFT/ei_fftw_impl.h
@@ -108,7 +108,7 @@ namespace internal {
{
typedef double scalar_type;
typedef fftw_complex complex_type;
- fftw_plan m_plan;
+ ::fftw_plan m_plan;
fftw_plan() :m_plan(NULL) {}
~fftw_plan() {if (m_plan) fftw_destroy_plan(m_plan);}