aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Meta.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-07-05 22:58:14 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-07-05 22:58:14 +0200
commit367ef66af3135227f3725613db53db1e6d316058 (patch)
tree6ac14ab6a6a04fdbfe7334db382f7167166c1240 /Eigen/src/Core/util/Meta.h
parent155d8d860363fb14dbec585d3631e2ed44c6108f (diff)
Re-enable some specializations for Assignment<.,Product<>>
Diffstat (limited to 'Eigen/src/Core/util/Meta.h')
-rw-r--r--Eigen/src/Core/util/Meta.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h
index 02b3d961a..9d0e7c266 100644
--- a/Eigen/src/Core/util/Meta.h
+++ b/Eigen/src/Core/util/Meta.h
@@ -145,7 +145,7 @@ struct is_convertible
/** \internal Allows to enable/disable an overload
* according to a compile time condition.
*/
-template<bool Condition, typename T> struct enable_if;
+template<bool Condition, typename T=void> struct enable_if;
template<typename T> struct enable_if<true,T>
{ typedef T type; };