From: Daniel Arndt Date: Mon, 25 Jun 2018 10:56:50 +0000 (+0200) Subject: Put variables on separate lines X-Git-Tag: v9.1.0-rc1~985^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9654c6746e606fc7a7c98e5072b838c600660aaf;p=dealii.git Put variables on separate lines --- diff --git a/examples/step-35/step-35.cc b/examples/step-35/step-35.cc index 6ed7dcabab..75ab69cfb3 100644 --- a/examples/step-35/step-35.cc +++ b/examples/step-35/step-35.cc @@ -100,7 +100,9 @@ namespace Step35 Method form; - double dt, initial_time, final_time; + double dt; + double initial_time; + double final_time; double Reynolds; @@ -112,7 +114,8 @@ namespace Step35 unsigned int vel_Krylov_size; unsigned int vel_off_diagonals; unsigned int vel_update_prec; - double vel_eps, vel_diag_strength; + double vel_eps; + double vel_diag_strength; bool verbose; unsigned int output_interval; @@ -438,7 +441,9 @@ namespace Step35 RunTimeParameters::Method type; const unsigned int deg; - const double dt, t_0, T; + const double dt; + const double t_0; + const double T; const double Re; EquationData::Velocity vel_exact;