Fix sub_dot implementations.

This commit is contained in:
Sébastien Crozet 2013-07-20 15:18:44 +02:00
parent cf216f9b90
commit d74a5905c6
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ macro_rules! sub_dot_impl(
{
#[inline]
fn sub_dot(&self, a: &$t<N>, b: &$t<N>) -> N
{ (self.$comp0 - a.$comp0) * b.$comp0 $(+ (self.$compN - a.$comp0) * b.$compN )* }
{ (self.$comp0 - a.$comp0) * b.$comp0 $(+ (self.$compN - a.$compN) * b.$compN )* }
}
)
)