File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2812,9 +2812,9 @@ namespace aspect
28122812 if (output_filename != " " )
28132813 {
28142814 // output solver history
2815- std::ofstream f (( output_filename) );
2815+ std::ofstream f (output_filename);
28162816
2817- for (const auto &solver_control: solver_controls)
2817+ for (const auto &solver_control : solver_controls)
28182818 {
28192819 // Skip the output if no iterations were run for this solver
28202820 if (solver_control.last_step () == numbers::invalid_unsigned_int)
@@ -2825,7 +2825,7 @@ namespace aspect
28252825 f << std::endl;
28262826
28272827 unsigned int j=0 ;
2828- for (const auto &residual: solver_control.get_history_data ())
2828+ for (const auto &residual : solver_control.get_history_data ())
28292829 f << j++ << ' ' << residual << std::endl;
28302830 }
28312831
You can’t perform that action at this time.
0 commit comments