Merge pull request #1127 from atgeirr/silence-warning

Fix order of initialization.
This commit is contained in:
Andreas Lauser 2016-12-29 14:05:41 +01:00 committed by GitHub
commit d89b48689b

View File

@ -27,12 +27,12 @@ namespace Opm
: pressure_time(0.0),
transport_time(0.0),
total_time(0.0),
total_well_iterations(0),
solver_time(0.0),
assemble_time(0.0),
linear_solve_time(0.0),
update_time(0.0),
output_write_time(0.0),
total_well_iterations(0),
total_linearizations( 0 ),
total_newton_iterations( 0 ),
total_linear_iterations( 0 ),