URL:
https://svn.lrde.epita.fr/svn/oln/trunk/milena
ChangeLog:
2007-10-02 Simon Nivault <simon.nivault(a)lrde.epita.fr>
Fix for compile.
* mln/metal/vec.hh: Fix definition of vprod to reflect declaration..
---
vec.hh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: trunk/milena/mln/metal/vec.hh
===================================================================
--- trunk/milena/mln/metal/vec.hh (revision 1215)
+++ trunk/milena/mln/metal/vec.hh (revision 1216)
@@ -533,7 +533,7 @@
// vprod
template <typename T, typename U>
- vec<3, T> // typename binary_arith_trait<T, U>::ret>
+ vec<3, mln_trait_op_times(T,U)> // typename binary_arith_trait<T,
U>::ret>
vprod(const vec<3, T>& lhs, const vec<3, U>& rhs)
{
vec<3, T> tmp; // FIXME typename binary_arith_trait<T, U>::ret>
tmp;