Skip to content
Snippets Groups Projects
Commit 6cab2325 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

remove unnecessary definitions of const static variables

parent 19748a94
No related branches found
No related tags found
No related merge requests found
...@@ -21,10 +21,6 @@ ...@@ -21,10 +21,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned HexRule8::n_all_nodes;
const unsigned HexRule8::n_base_nodes;
const unsigned HexRule8::face_nodes[6][4] = const unsigned HexRule8::face_nodes[6][4] =
{ {
{0, 3, 2, 1}, // Face 0 {0, 3, 2, 1}, // Face 0
......
...@@ -17,10 +17,6 @@ ...@@ -17,10 +17,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned LineRule2::n_all_nodes;
const unsigned LineRule2::n_base_nodes;
const unsigned LineRule2::edge_nodes[1][2] = const unsigned LineRule2::edge_nodes[1][2] =
{ {
{0, 1} // Edge 0 {0, 1} // Edge 0
......
/**
* \copyright
* Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#include "LineRule3.h"
namespace MeshLib {
const unsigned LineRule3::n_all_nodes;
} // end namespace MeshLib
...@@ -19,10 +19,6 @@ ...@@ -19,10 +19,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned PrismRule6::n_all_nodes;
const unsigned PrismRule6::n_base_nodes;
const unsigned PrismRule6::face_nodes[5][4] = const unsigned PrismRule6::face_nodes[5][4] =
{ {
{0, 2, 1, 99}, // Face 0 {0, 2, 1, 99}, // Face 0
......
...@@ -19,10 +19,6 @@ ...@@ -19,10 +19,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned PyramidRule5::n_all_nodes;
const unsigned PyramidRule5::n_base_nodes;
const unsigned PyramidRule5::face_nodes[5][4] = const unsigned PyramidRule5::face_nodes[5][4] =
{ {
{0, 1, 4, 99}, // Face 0 {0, 1, 4, 99}, // Face 0
......
...@@ -17,10 +17,6 @@ ...@@ -17,10 +17,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned QuadRule4::n_all_nodes;
const unsigned QuadRule4::n_base_nodes;
const unsigned QuadRule4::edge_nodes[4][2] = const unsigned QuadRule4::edge_nodes[4][2] =
{ {
{0, 1}, // Edge 0 {0, 1}, // Edge 0
......
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned QuadRule8::n_all_nodes;
const unsigned QuadRule8::edge_nodes[4][3] = const unsigned QuadRule8::edge_nodes[4][3] =
{ {
{0, 1, 4}, // Edge 0 {0, 1, 4}, // Edge 0
......
/**
* \copyright
* Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#include "QuadRule9.h"
namespace MeshLib {
const unsigned QuadRule9::n_all_nodes;
} // end namespace MeshLib
...@@ -21,10 +21,6 @@ ...@@ -21,10 +21,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned TetRule4::n_all_nodes;
const unsigned TetRule4::n_base_nodes;
const unsigned TetRule4::face_nodes[4][3] = const unsigned TetRule4::face_nodes[4][3] =
{ {
{0, 2, 1}, // Face 0 {0, 2, 1}, // Face 0
......
...@@ -17,10 +17,6 @@ ...@@ -17,10 +17,6 @@
namespace MeshLib { namespace MeshLib {
const unsigned TriRule3::n_all_nodes;
const unsigned TriRule3::n_base_nodes;
const unsigned TriRule3::edge_nodes[3][2] = const unsigned TriRule3::edge_nodes[3][2] =
{ {
{0, 1}, // Edge 0 {0, 1}, // Edge 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment