From 6381fca61780f588ff8b302a85883d74399821de Mon Sep 17 00:00:00 2001
From: Norihiro Watanabe <norihiro.watanabe@ufz.de>
Date: Wed, 28 Jan 2015 13:56:17 +0100
Subject: [PATCH] move n_face of 2D elements to FaceRule

---
 MeshLib/Elements/FaceRule.h  | 4 ++--
 MeshLib/Elements/QuadRule4.h | 3 ---
 MeshLib/Elements/TriRule3.h  | 3 ---
 3 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/MeshLib/Elements/FaceRule.h b/MeshLib/Elements/FaceRule.h
index 273d52c0d57..b68cf4c4d93 100644
--- a/MeshLib/Elements/FaceRule.h
+++ b/MeshLib/Elements/FaceRule.h
@@ -26,8 +26,8 @@ public:
 	/// Get the number of nodes for face i.
 	static unsigned getNFaceNodes(unsigned /*i*/) { return 2; }
 
-	/// 2D elements have no faces.
-	static unsigned getNFaces() { return 0; }
+	/// Constant: The number of faces
+	static const unsigned n_faces = 0;
 }; /* class */
 
 } /* namespace */
diff --git a/MeshLib/Elements/QuadRule4.h b/MeshLib/Elements/QuadRule4.h
index 5bc9b16c977..c4ed6263fe2 100644
--- a/MeshLib/Elements/QuadRule4.h
+++ b/MeshLib/Elements/QuadRule4.h
@@ -49,9 +49,6 @@ public:
 	/// Constant: The FEM type of the element
 	static const CellType cell_type = CellType::QUAD4;
 
-	/// Constant: The number of faces
-	static const unsigned n_faces = 0;
-
 	/// Constant: The number of edges
 	static const unsigned n_edges = 4;
 
diff --git a/MeshLib/Elements/TriRule3.h b/MeshLib/Elements/TriRule3.h
index 23aa1c0aab0..654fe494ebc 100644
--- a/MeshLib/Elements/TriRule3.h
+++ b/MeshLib/Elements/TriRule3.h
@@ -50,9 +50,6 @@ public:
 	/// Constant: The FEM type of the element
 	static const CellType cell_type = CellType::TRI3;
 
-	/// Constant: The number of faces
-	static const unsigned n_faces = 0;
-
 	/// Constant: The number of edges
 	static const unsigned n_edges = 3;
 
-- 
GitLab