From 3fdd1ca63e740680d8bcc66a7bf287417ddcb75f Mon Sep 17 00:00:00 2001
From: Christoph Grueninger <christoph.grueninger@iws.uni-stuttgart.de>
Date: Mon, 23 Jul 2012 10:58:06 +0000
Subject: [PATCH] Removed superfluizius comma at end of enums. (reviewed by
 faigle)

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8700 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/boxmodels/1p/1plocalresidual.hh       | 2 +-
 dumux/boxmodels/1p2c/1p2clocalresidual.hh   | 4 ++--
 dumux/boxmodels/1p2c/1p2cvolumevariables.hh | 2 +-
 test/boxmodels/1p/1ptestproblem.hh          | 2 +-
 test/boxmodels/1p2c/1p2coutflowproblem.hh   | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dumux/boxmodels/1p/1plocalresidual.hh b/dumux/boxmodels/1p/1plocalresidual.hh
index 8ca34c11b2..3b27dd72b3 100644
--- a/dumux/boxmodels/1p/1plocalresidual.hh
+++ b/dumux/boxmodels/1p/1plocalresidual.hh
@@ -61,7 +61,7 @@ class OnePLocalResidual : public GET_PROP_TYPE(TypeTag, BaseLocalResidual)
     typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices;
     //index of the mass balance equation
     enum {
-        conti0EqIdx = Indices::conti0EqIdx, //index for the mass balance
+        conti0EqIdx = Indices::conti0EqIdx //index for the mass balance
     };
     //index of the primary variable
     enum{
diff --git a/dumux/boxmodels/1p2c/1p2clocalresidual.hh b/dumux/boxmodels/1p2c/1p2clocalresidual.hh
index bb324b49b6..5bfad15e80 100644
--- a/dumux/boxmodels/1p2c/1p2clocalresidual.hh
+++ b/dumux/boxmodels/1p2c/1p2clocalresidual.hh
@@ -77,12 +77,12 @@ protected:
 
         //phase index
         phaseIdx = Indices::phaseIdx,
-        transportCompIdx = Indices::transportCompIdx,
+        transportCompIdx = Indices::transportCompIdx
     };
     // indices of the primary variables
     enum {
         pressuerIdx = Indices::pressureIdx,
-        massOrMoleFracIdx = Indices::massOrMoleFracIdx,
+        massOrMoleFracIdx = Indices::massOrMoleFracIdx
     };
     // indices of the equations
     enum {
diff --git a/dumux/boxmodels/1p2c/1p2cvolumevariables.hh b/dumux/boxmodels/1p2c/1p2cvolumevariables.hh
index 0993ccfb28..9d72cf0a45 100644
--- a/dumux/boxmodels/1p2c/1p2cvolumevariables.hh
+++ b/dumux/boxmodels/1p2c/1p2cvolumevariables.hh
@@ -59,7 +59,7 @@ class OnePTwoCVolumeVariables : public BoxVolumeVariables<TypeTag>
     enum {
         phaseIdx = Indices::phaseIdx,
         phaseCompIdx = Indices::phaseCompIdx,
-        transportCompIdx = Indices::transportCompIdx,
+        transportCompIdx = Indices::transportCompIdx
     };
     //indices of primary variables
     enum{
diff --git a/test/boxmodels/1p/1ptestproblem.hh b/test/boxmodels/1p/1ptestproblem.hh
index 0b92d7c8fe..3053c3de17 100644
--- a/test/boxmodels/1p/1ptestproblem.hh
+++ b/test/boxmodels/1p/1ptestproblem.hh
@@ -123,7 +123,7 @@ class OnePTestProblem : public PorousMediaBoxProblem<TypeTag>
     enum {
         // Grid and world dimension
         dim = GridView::dimension,
-        dimWorld = GridView::dimensionworld,
+        dimWorld = GridView::dimensionworld
     };
     enum {
         // indices of the primary variables
diff --git a/test/boxmodels/1p2c/1p2coutflowproblem.hh b/test/boxmodels/1p2c/1p2coutflowproblem.hh
index 6fd1e2af28..af0c1732d0 100644
--- a/test/boxmodels/1p2c/1p2coutflowproblem.hh
+++ b/test/boxmodels/1p2c/1p2coutflowproblem.hh
@@ -131,12 +131,12 @@ class OnePTwoCOutflowProblem : public PorousMediaBoxProblem<TypeTag>
     enum {
         // Grid and world dimension
         dim = GridView::dimension,
-        dimWorld = GridView::dimensionworld,
+        dimWorld = GridView::dimensionworld
     };
     enum {
         // indices of the primary variables
         pressureIdx = Indices::pressureIdx,
-        massOrMoleFracIdx = Indices::massOrMoleFracIdx,
+        massOrMoleFracIdx = Indices::massOrMoleFracIdx
     };
     enum {
         // indices of the equations
-- 
GitLab