From: David Wells Date: Tue, 23 Feb 2016 18:12:12 +0000 (-0500) Subject: Fix step-20 compilation. X-Git-Tag: v8.5.0-rc1~1284^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42a5871e3c73f118f73ace27f8dfe6b38bfb59bb;p=dealii.git Fix step-20 compilation. 76874a2160 did not correctly name a field of a class. --- diff --git a/examples/step-20/step-20.cc b/examples/step-20/step-20.cc index 0c8cfc16df..fb1be4ff95 100644 --- a/examples/step-20/step-20.cc +++ b/examples/step-20/step-20.cc @@ -651,7 +651,7 @@ namespace Step20 const InverseMatrix > &Minv) : system_matrix (&A), - inverse_mass (&Minv), + m_inverse (&Minv), tmp1 (A.block(0,0).m()), tmp2 (A.block(0,0).m()) {}