Skip to content

Commit

Permalink
Merge pull request #16580 from bangerth/template
Browse files Browse the repository at this point in the history
Add a missing template argument.
  • Loading branch information
kronbichler committed Feb 1, 2024
2 parents 53a8161 + 312809f commit 8d4e93e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/deal.II/base/template_constraints.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8d4e93e

Please sign in to comment.