Skip to content

Commit 91dbc79

Browse files
author
Max Aehle
committed
reorder initializers in constructor
1 parent 2264d91 commit 91dbc79

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Common/src/geometry/primal_grid/CPrimalGrid.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
#include "../../../include/geometry/primal_grid/CPrimalGrid.hpp"
2929

3030
CPrimalGrid::CPrimalGrid(bool FEM, unsigned short nNodes, unsigned short nNeighbor_Elements) :
31-
FEM(FEM),
3231
Nodes(new unsigned long[nNodes]),
33-
Neighbor_Elements(new long[nNeighbor_Elements])
32+
Neighbor_Elements(new long[nNeighbor_Elements]),
33+
FEM(FEM)
3434
{
3535

3636
GlobalIndex_DomainElement = 0;

0 commit comments

Comments
 (0)