From 7e6ac830367c3cb38cd8085ddd96c477ad6a2e8b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 7 Oct 2015 06:11:47 -0500 Subject: [PATCH] Run astyle. --- source/grid/grid_in.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/grid/grid_in.cc b/source/grid/grid_in.cc index cf13f1a446..478895e530 100644 --- a/source/grid/grid_in.cc +++ b/source/grid/grid_in.cc @@ -466,7 +466,7 @@ void GridIn::read_unv(std::istream &in) AssertThrow((type == 11)||(type == 44)||(type == 94)||(type == 115), ExcUnknownElementType(type)); - if( (((type == 44)||(type == 94))&&(dim == 2)) || ((type == 115)&&(dim == 3)) ) // cell + if ( (((type == 44)||(type == 94))&&(dim == 2)) || ((type == 115)&&(dim == 3)) ) // cell { cells.push_back(CellData()); @@ -503,7 +503,7 @@ void GridIn::read_unv(std::istream &in) no_line++; } - else if( ((type == 44)||(type == 94)) && (dim == 3) ) // boundary quad + else if ( ((type == 44)||(type == 94)) && (dim == 3) ) // boundary quad { subcelldata.boundary_quads.push_back(CellData<2>()); @@ -525,7 +525,7 @@ void GridIn::read_unv(std::istream &in) ExcMessage ("Unknown element label <" + Utilities::int_to_string(type) + "> when running in dim=" - + Utilities::int_to_string(dim))); + + Utilities::int_to_string(dim))); } // note that so far all materials and bcs are explicitly set to 0 -- 2.39.5