workaround ambiguous call

This commit is contained in:
Gael Guennebaud 2014-09-16 17:10:25 -07:00
parent c2f66c65aa
commit e44d78dab3

View File

@ -13,7 +13,8 @@
ref2 = ref1 = DEST; \
DEST.template triangularView<TRI>() OP; \
ref1 OP; \
ref2.template triangularView<TRI>() = ref1; \
ref2.template triangularView<TRI>() \
= ref1.template triangularView<TRI>(); \
VERIFY_IS_APPROX(DEST,ref2); \
}