Implement c++03 compatible fix for changeset 7a43af1a335da2c0489b4119a33ee1cbff0c15d6

(grafted from f0a4642baba70a64128964d96c4ede012614925e
)
This commit is contained in:
Gael Guennebaud 2019-10-09 16:00:57 +02:00
parent 74d474e7df
commit a7d6a65d49
2 changed files with 2 additions and 1 deletions

View File

@ -231,6 +231,8 @@ namespace internal {
protected:
typedef fftw_plan<Scalar> PlanData;
typedef Eigen::numext::int64_t int64_t;
typedef std::map<int64_t,PlanData> PlanMap;
PlanMap m_plans;

View File

@ -8,7 +8,6 @@
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include "main.h"
#include <cstdint>
#include <unsupported/Eigen/FFT>
template <typename T>