From df603ce20c635973b9280cd4281cb936b3591c90 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sat, 7 Nov 2009 15:32:50 +0000 Subject: [PATCH] Remove register declaration of variables altogether. The compiler certainly knows that better than we. git-svn-id: https://svn.dealii.org/trunk@20062 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/vector.templates.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/lac/include/lac/vector.templates.h b/deal.II/lac/include/lac/vector.templates.h index aa927e5c46..397f344b0d 100644 --- a/deal.II/lac/include/lac/vector.templates.h +++ b/deal.II/lac/include/lac/vector.templates.h @@ -404,7 +404,7 @@ Vector::norm_sqr () const Assert (vec_size!=0, ExcEmptyObject()); const unsigned int blocking = 1<>(BLOCK_LEVEL))<<(BLOCK_LEVEL)), *X_end2 = X + ((vec_size>>(2*BLOCK_LEVEL))<<(2*BLOCK_LEVEL)), @@ -522,7 +522,7 @@ Vector::l1_norm () const Assert (vec_size!=0, ExcEmptyObject()); const unsigned int blocking = 1<>(BLOCK_LEVEL))<<(BLOCK_LEVEL)), *X_end2 = X + ((vec_size>>(2*BLOCK_LEVEL))<<(2*BLOCK_LEVEL)), @@ -596,7 +596,7 @@ Vector::lp_norm (const real_type p) const return std::sqrt(norm_sqr()); const unsigned int blocking = 1<>(BLOCK_LEVEL))<<(BLOCK_LEVEL)), *X_end2 = X + ((vec_size>>(2*BLOCK_LEVEL))<<(2*BLOCK_LEVEL)), -- 2.39.5