From 8520c610b195363685117bfd6fcdf1a4a2ddd4b2 Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Wed, 25 Nov 2015 14:34:41 +0100
Subject: [PATCH] Do not use auto&& in loops

---
 dune/common/densematrix.hh | 8 ++++----
 dune/common/densevector.hh | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dune/common/densematrix.hh b/dune/common/densematrix.hh
index 63862e42e..717342f02 100644
--- a/dune/common/densematrix.hh
+++ b/dune/common/densematrix.hh
@@ -574,7 +574,7 @@ namespace Dune
       using std::max;
 
       real_type norm = 0;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = x.one_norm();
         norm = max(a, norm);
       }
@@ -589,7 +589,7 @@ namespace Dune
       using std::max;
 
       real_type norm = 0;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = x.one_norm_real();
         norm = max(a, norm);
       }
@@ -605,7 +605,7 @@ namespace Dune
 
       real_type norm = 0;
       real_type isNaN = 1;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = x.one_norm();
         norm = max(a, norm);
         isNaN += a;
@@ -623,7 +623,7 @@ namespace Dune
 
       real_type norm = 0;
       real_type isNaN = 1;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = x.one_norm_real();
         norm = max(a, norm);
         isNaN += a;
diff --git a/dune/common/densevector.hh b/dune/common/densevector.hh
index b322f0740..4339196d7 100644
--- a/dune/common/densevector.hh
+++ b/dune/common/densevector.hh
@@ -612,7 +612,7 @@ namespace Dune {
       using std::max;
 
       real_type norm = 0;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = abs(x);
         norm = max(a, norm);
       }
@@ -627,7 +627,7 @@ namespace Dune {
       using std::max;
 
       real_type norm = 0;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = fvmeta::absreal(x);
         norm = max(a, norm);
       }
@@ -644,7 +644,7 @@ namespace Dune {
 
       real_type norm = 0;
       real_type isNaN = 1;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = abs(x);
         norm = max(a, norm);
         isNaN += a;
@@ -662,7 +662,7 @@ namespace Dune {
 
       real_type norm = 0;
       real_type isNaN = 1;
-      for (auto&& x : *this) {
+      for (auto const &x : *this) {
         real_type const a = fvmeta::absreal(x);
         norm = max(a, norm);
         isNaN += a;
-- 
GitLab