From: Peter Munch Date: Mon, 10 May 2021 09:29:01 +0000 (+0200) Subject: Step 77: add typename X-Git-Tag: v9.3.0-rc1~106^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf337714cac5b3e012e5b93964341ba00ac616c8;p=dealii.git Step 77: add typename --- diff --git a/examples/step-77/step-77.cc b/examples/step-77/step-77.cc index 61212bfebf..fb88badff6 100644 --- a/examples/step-77/step-77.cc +++ b/examples/step-77/step-77.cc @@ -554,7 +554,8 @@ namespace Step77 // reach; but you might want to look into what other members the // SUNDIALS::KINSOL::AdditionalData class has and play with them). { - SUNDIALS::KINSOL>::AdditionalData additional_data; + typename SUNDIALS::KINSOL>::AdditionalData + additional_data; additional_data.function_tolerance = target_tolerance; SUNDIALS::KINSOL> nonlinear_solver(additional_data);