From e52af158fc87b4c8d1b12446f1956be457a8174e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Wed, 17 Dec 2014 11:32:20 +0100 Subject: [PATCH] Fix call to DerivedGeology constructor. New argument to constructor was not provided, still compiled due to default argument. --- examples/sim_fibo_ad_cp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sim_fibo_ad_cp.cpp b/examples/sim_fibo_ad_cp.cpp index 2e44ac96f..c750a8cb2 100644 --- a/examples/sim_fibo_ad_cp.cpp +++ b/examples/sim_fibo_ad_cp.cpp @@ -243,7 +243,7 @@ try // initialize variables simtimer.init(timeMap); - Opm::DerivedGeology geology(*grid, *new_props, eclipseState, grav); + Opm::DerivedGeology geology(*grid, *new_props, eclipseState, false, grav); std::vector threshold_pressures = thresholdPressures(deck, eclipseState, *grid);