From: Wolfgang Bangerth Date: Thu, 7 Jan 2016 23:10:55 +0000 (-0600) Subject: Minor stylistic changes. X-Git-Tag: v8.4.0-rc2~106^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac4ea40a1c872a1ca5d78d6c38f9ce65834c30f5;p=dealii.git Minor stylistic changes. --- diff --git a/examples/step-18/step-18.cc b/examples/step-18/step-18.cc index 321f5a22c4..4cf836b54a 100644 --- a/examples/step-18/step-18.cc +++ b/examples/step-18/step-18.cc @@ -1029,7 +1029,7 @@ namespace Step18 cell = dof_handler.begin_active(), endc = dof_handler.end(); for (; cell!=endc; ++cell) - if (cell->is_locally_owned() ) + if (cell->is_locally_owned()) { cell_matrix = 0; cell_rhs = 0; @@ -1302,7 +1302,7 @@ namespace Step18 cell = triangulation.begin_active(), endc = triangulation.end(); for (; cell!=endc; ++cell) - if (cell->is_locally_owned() ) + if (cell->is_locally_owned()) { // On these cells, add up the stresses over all quadrature // points... @@ -1702,7 +1702,7 @@ namespace Step18 for (typename Triangulation::active_cell_iterator cell = triangulation.begin_active(); cell != triangulation.end(); ++cell) - if (cell->is_locally_owned() ) + if (cell->is_locally_owned()) ++our_cells; triangulation.clear_user_data(); @@ -1735,7 +1735,7 @@ namespace Step18 for (typename Triangulation::active_cell_iterator cell = triangulation.begin_active(); cell != triangulation.end(); ++cell) - if (cell->is_locally_owned() ) + if (cell->is_locally_owned()) { cell->set_user_pointer (&quadrature_point_history[history_index]); history_index += quadrature_formula.size(); @@ -1820,7 +1820,7 @@ namespace Step18 for (typename DoFHandler::active_cell_iterator cell = dof_handler.begin_active(); cell != dof_handler.end(); ++cell) - if (cell->is_locally_owned() ) + if (cell->is_locally_owned()) { // Next, get a pointer to the quadrature point history data local to // the present cell, and, as a defensive measure, make sure that