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.
This commit is contained in:
Jitse Niesen 2010-12-12 11:44:30 +00:00
parent e05c79cbd8
commit 9cd4f67e7f

View File

@ -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);}