From 8b5fae0ccbe8f6df44039212a810b1bf92ee5608 Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 5 Jul 2023 20:13:33 -0400 Subject: [PATCH] Add a missing typedef to the epetra vector wrapper. We need this to satisfy the vector space vector concept. --- include/deal.II/lac/trilinos_epetra_vector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/deal.II/lac/trilinos_epetra_vector.h b/include/deal.II/lac/trilinos_epetra_vector.h index 0c4cbb7a78..976cfb8d35 100644 --- a/include/deal.II/lac/trilinos_epetra_vector.h +++ b/include/deal.II/lac/trilinos_epetra_vector.h @@ -65,6 +65,7 @@ namespace LinearAlgebra public: using value_type = double; using size_type = types::global_dof_index; + using real_type = double; /** * Constructor. Create a vector of dimension zero. -- 2.39.5