From 1c2b33fa3fd25e03b787bef1fe20a461fedcc804 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 27 Oct 2023 13:42:01 -0400 Subject: [PATCH] Fix trilinos_tpetra_vector.h --- include/deal.II/lac/trilinos_tpetra_vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/lac/trilinos_tpetra_vector.h b/include/deal.II/lac/trilinos_tpetra_vector.h index e53d38d15c..847c68869b 100644 --- a/include/deal.II/lac/trilinos_tpetra_vector.h +++ b/include/deal.II/lac/trilinos_tpetra_vector.h @@ -817,7 +817,7 @@ namespace LinearAlgebra Tpetra::Access::ReadWrite); # else vector->template sync(); - auto vector_2d = vector.template getLocalView(); + auto vector_2d = vector->template getLocalView(); # endif auto vector_1d = Kokkos::subview(vector_2d, Kokkos::ALL(), 0); # if !DEAL_II_TRILINOS_VERSION_GTE(13, 2, 0) -- 2.39.5