From: Stefano Zampini Date: Tue, 15 Aug 2023 16:28:16 +0000 (+0800) Subject: PETScWrappers::TimeStepper: fix typo X-Git-Tag: relicensing~591^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15880%2Fhead;p=dealii.git PETScWrappers::TimeStepper: fix typo use VectorType, not VectorBase --- diff --git a/include/deal.II/lac/petsc_ts.templates.h b/include/deal.II/lac/petsc_ts.templates.h index 050cb2e962..0c20798786 100644 --- a/include/deal.II/lac/petsc_ts.templates.h +++ b/include/deal.II/lac/petsc_ts.templates.h @@ -1092,8 +1092,8 @@ namespace PETScWrappers AssertPETSc(VecDuplicate(py, &av)); AssertPETSc(VecDuplicate(py, &rv)); - VectorBase avdealii(av); - VectorBase rvdealii(rv); + VectorType avdealii(av); + VectorType rvdealii(rv); avdealii = atol; rvdealii = rtol; for (auto i : algebraic_components())