fix typo in unsupported/NumericalDiff

This commit is contained in:
Gael Guennebaud 2012-06-15 07:56:55 +02:00
parent 12e9f3b0fc
commit 37d367a231

View File

@ -66,7 +66,7 @@ public:
template<typename T0, typename T1>
NumericalDiff(const T0& a0, const T1& a1) : Functor(a0, a1), epsfcn(0) {}
template<typename T0, typename T1, typename T2>
NumericalDiff(const T0& a0, const T1& a1, const T1& a2) : Functor(a0, a1, a2), epsfcn(0) {}
NumericalDiff(const T0& a0, const T1& a1, const T2& a2) : Functor(a0, a1, a2), epsfcn(0) {}
enum {
InputsAtCompileTime = Functor::InputsAtCompileTime,