From f75419c711b3df73ca1e9b5af94db28d437a0698 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 12 Jun 2013 17:56:15 +0200 Subject: Add missing changes. --- blas/level1_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'blas/level1_impl.h') diff --git a/blas/level1_impl.h b/blas/level1_impl.h index c73f4d4f9..b08c2f6be 100644 --- a/blas/level1_impl.h +++ b/blas/level1_impl.h @@ -120,10 +120,10 @@ int EIGEN_BLAS_FUNC(rotg)(RealScalar *pa, RealScalar *pb, RealScalar *pc, RealSc else { scale = abs(a) + abs(b); - norm = scale*sqrt((internal::abs2(a/scale))+ (internal::abs2(b/scale))); + norm = scale*sqrt((numext::abs2(a/scale)) + (numext::abs2(b/scale))); alpha = a/abs(a); *c = abs(a)/norm; - *s = alpha*internal::conj(b)/norm; + *s = alpha*numext::conj(b)/norm; a = alpha*norm; } #endif -- cgit v1.2.3