From: Hendrik Ranocha Date: Thu, 16 May 2024 13:20:56 +0000 (+0200) Subject: Fix error message in step-50 X-Git-Tag: v9.6.0-rc1~268^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17030%2Fhead;p=dealii.git Fix error message in step-50 --- diff --git a/examples/step-50/step-50.cc b/examples/step-50/step-50.cc index c0a9019b4f..696e66dcfc 100644 --- a/examples/step-50/step-50.cc +++ b/examples/step-50/step-50.cc @@ -106,7 +106,7 @@ namespace ChangeVectorTypes rwv.import_elements(in, VectorOperation::insert); #ifdef USE_PETSC_LA AssertThrow(false, - ExcMessage("CopyVectorTypes::copy() not implemented for " + ExcMessage("ChangeVectorTypes::copy() not implemented for " "PETSc vector types.")); #else out.import_elements(rwv, VectorOperation::insert); @@ -123,7 +123,7 @@ namespace ChangeVectorTypes #ifdef USE_PETSC_LA (void)in; AssertThrow(false, - ExcMessage("CopyVectorTypes::copy() not implemented for " + ExcMessage("ChangeVectorTypes::copy() not implemented for " "PETSc vector types.")); #else rwv.reinit(in);