From f9c7ad680cee5fa826cbcefb5a36160a292f956b Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Fri, 25 Jul 2014 07:09:11 +0000
Subject: [PATCH] Avoid signed/unsigned warning

[[Imported from SVN: r9840]]
---
 dune/gfe/parallel/vectorcommunicator.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dune/gfe/parallel/vectorcommunicator.hh b/dune/gfe/parallel/vectorcommunicator.hh
index 05910c94..2dd2b7fb 100644
--- a/dune/gfe/parallel/vectorcommunicator.hh
+++ b/dune/gfe/parallel/vectorcommunicator.hh
@@ -28,7 +28,7 @@ private:
     std::vector<TransferVectorTuple> localVectorEntries;
 
     // Translate vector entries
-    for (int k=0; k<localVector.size(); k++)
+    for (size_t k=0; k<localVector.size(); k++)
         localVectorEntries.push_back(TransferVectorTuple(guIndex.globalIndex(k), localVector[k]));
 
     // Get number of vector entries on each process
-- 
GitLab