Fixes by clang-format

This commit is contained in:
magnesj
2020-11-09 12:44:29 +00:00
committed by Magne Sjaastad
parent b9706a0f77
commit 62eb603ed2
204 changed files with 67512 additions and 67423 deletions

View File

@@ -881,9 +881,10 @@ private:
}
else // if ( endToGrow > 1 )
{
m_branchLines.push_back(
std::make_pair( false,
std::deque<size_t>{branchList.front(), cellWithNeighborsPair.first, neighbour} ) );
m_branchLines.push_back( std::make_pair( false,
std::deque<size_t>{ branchList.front(),
cellWithNeighborsPair.first,
neighbour } ) );
auto newBranchLineIt = std::prev( m_branchLines.end() );
growBranchListEnd( newBranchLineIt );
if ( newBranchLineIt->second.size() == 3 )
@@ -981,11 +982,11 @@ private:
{
if ( prevCell == cvf::UNDEFINED_SIZE_T )
{
m_branchLines.push_back( std::make_pair( false, std::deque<size_t>{startCell, nb} ) );
m_branchLines.push_back( std::make_pair( false, std::deque<size_t>{ startCell, nb } ) );
}
else
{
m_branchLines.push_back( std::make_pair( false, std::deque<size_t>{prevCell, startCell, nb} ) );
m_branchLines.push_back( std::make_pair( false, std::deque<size_t>{ prevCell, startCell, nb } ) );
}
m_unusedWellCellIndices.erase( nb );