System : Reorder initialization order to match declaration

This commit is contained in:
Magne Sjaastad
2018-02-23 22:38:08 +01:00
parent 34c6e3d906
commit 0006c786cf
11 changed files with 50 additions and 31 deletions

View File

@@ -38,13 +38,13 @@ static size_t undefinedCornersArray[8] = {cvf::UNDEFINED_SIZE_T,
///
//--------------------------------------------------------------------------------------------------
RigCell::RigCell() :
m_gridLocalCellIndex(cvf::UNDEFINED_SIZE_T),
m_hostGrid(nullptr),
m_subGrid(nullptr),
m_parentCellIndex(cvf::UNDEFINED_SIZE_T),
m_mainGridCellIndex(cvf::UNDEFINED_SIZE_T),
m_subGrid(nullptr),
m_hostGrid(nullptr),
m_isInvalid(false),
m_gridLocalCellIndex(cvf::UNDEFINED_SIZE_T),
m_coarseningBoxIndex(cvf::UNDEFINED_SIZE_T)
m_coarseningBoxIndex(cvf::UNDEFINED_SIZE_T),
m_isInvalid(false)
{
memcpy(m_cornerIndices.data(), undefinedCornersArray, 8*sizeof(size_t));