From 5b56579665e4ab231679949b6149f019175256e2 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sat, 3 Aug 2024 16:17:30 -0400 Subject: [PATCH] Give make_tpetra_map a default argument --- include/deal.II/base/index_set.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/index_set.h b/include/deal.II/base/index_set.h index d444b11356..1ed786270c 100644 --- a/include/deal.II/base/index_set.h +++ b/include/deal.II/base/index_set.h @@ -18,10 +18,13 @@ #include #include +#include #include #include #include +#include + #include #include @@ -609,12 +612,16 @@ public: const bool overlapping = false) const; # ifdef DEAL_II_TRILINOS_WITH_TPETRA - template + template < + typename NodeType = + LinearAlgebra::TpetraWrappers::TpetraTypes::NodeType> Tpetra::Map make_tpetra_map(const MPI_Comm communicator = MPI_COMM_WORLD, const bool overlapping = false) const; - template + template < + typename NodeType = + LinearAlgebra::TpetraWrappers::TpetraTypes::NodeType> Teuchos::RCP> make_tpetra_map_rcp(const MPI_Comm communicator = MPI_COMM_WORLD, const bool overlapping = false) const; -- 2.39.5