Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a missing template argument. #16580

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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