From: kronbichler Date: Sat, 7 Nov 2009 15:32:50 +0000 (+0000) Subject: Remove register declaration of variables altogether. The compiler certainly knows... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea521e2cd804a1447837aa3c92dbb9254356117b;p=dealii-svn.git 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 --- 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)),