Harmless typo

This commit is contained in:
Gael Guennebaud 2016-12-27 16:31:17 +01:00
parent 354baa0fb1
commit 6b8f637ab1

View File

@ -662,7 +662,7 @@ bool is_same_dense(const T1 &, const T2 &, typename enable_if<!(has_direct_acces
// Internal helper defining the cost of a scalar division for the type T.
// The default heuristic can be specialized for each scalar type and architecture.
template<typename T,bool Vectorized=false,typename EnaleIf = void>
template<typename T,bool Vectorized=false,typename EnableIf = void>
struct scalar_div_cost {
enum { value = 8*NumTraits<T>::MulCost };
};