From: Wolfgang Bangerth <bangerth@colostate.edu>
Date: Thu, 1 Feb 2024 04:31:43 +0000 (-0700)
Subject: Add a missing template argument.
X-Git-Tag: relicensing~87^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=312809f655b4630b881e676b2e4918d85cc160d9;p=dealii.git

Add a missing template argument.
---

diff --git a/include/deal.II/base/template_constraints.h b/include/deal.II/base/template_constraints.h
index bbbd0685fa..45f240ec88 100644
--- a/include/deal.II/base/template_constraints.h
+++ b/include/deal.II/base/template_constraints.h
@@ -784,9 +784,10 @@ namespace concepts
         true;
 
 #    ifdef DEAL_II_TRILINOS_WITH_TPETRA
-    template <typename Number>
+    template <typename Number, typename MemorySpace>
     inline constexpr bool is_dealii_vector_type<
-      dealii::LinearAlgebra::TpetraWrappers::Vector<Number>> = true;
+      dealii::LinearAlgebra::TpetraWrappers::Vector<Number, MemorySpace>> =
+      true;
 #    endif
 #  endif