From b02af9ee6b8dd4d04b3138055b8fd4b176231a30 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Sun, 13 Jan 2013 21:17:59 +0100 Subject: [PATCH] Constness --- src/one-body-sample.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/one-body-sample.cc b/src/one-body-sample.cc index e76d5db4..9058bf1e 100644 --- a/src/one-body-sample.cc +++ b/src/one-body-sample.cc @@ -334,8 +334,7 @@ int main(int argc, char *argv[]) { auto const timesteps = parset.get<size_t>("timeSteps"); auto const tau = parset.get<double>("endOfTime") / timesteps; - - auto createRHS = [&](double _time, VectorType &_ell) { + auto const createRHS = [&](double _time, VectorType &_ell) { assemble_neumann<GridType, GridView, SmallVector, P1Basis>( leafView, p1Basis, neumannNodes, _ell, neumannFunction, _time); _ell += gravityFunctional; -- GitLab