From 5339ef900ff8b9c99a2cd6db0de5f86376c0904d Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Wed, 1 Feb 2017 10:59:50 +0100
Subject: [PATCH] [implicit][bugfix] Fix order of arguments in eval(element)

---
 dumux/implicit/localresidual.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dumux/implicit/localresidual.hh b/dumux/implicit/localresidual.hh
index ee68de2417..8d1d01003f 100644
--- a/dumux/implicit/localresidual.hh
+++ b/dumux/implicit/localresidual.hh
@@ -116,7 +116,7 @@ public:
         ElementBoundaryTypes bcTypes;
         bcTypes.update(problem(), element, fvGeometry);
 
-        asImp_().eval(element, fvGeometry, curElemVolVars, prevElemVolVars, bcTypes, elemFluxVarsCache);
+        asImp_().eval(element, fvGeometry, prevElemVolVars, curElemVolVars, bcTypes, elemFluxVarsCache);
     }
 
     /*!
-- 
GitLab