From: Matthias Maier Date: Sat, 16 Sep 2017 05:34:13 +0000 (-0500) Subject: codim_one/error_estimator_02: Fix invalid array access X-Git-Tag: v9.0.0-rc1~1055^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbee2c71625f52052f8eece4b91b7bb0b498106c;p=dealii.git codim_one/error_estimator_02: Fix invalid array access --- diff --git a/tests/codim_one/error_estimator_02.cc b/tests/codim_one/error_estimator_02.cc index b09fc7e9ed..91953225f7 100644 --- a/tests/codim_one/error_estimator_02.cc +++ b/tests/codim_one/error_estimator_02.cc @@ -54,7 +54,6 @@ public: Vector &values) const { values(0) = value(p,0); - values(1) = value(p,1); } }; @@ -81,7 +80,6 @@ public: Vector &values) const { values(0) = value(p,0); - values(1) = value(p,1); } };