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

Simplify code slightly. #16009

Merged
merged 1 commit into from
Sep 19, 2023
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
4 changes: 2 additions & 2 deletions include/deal.II/lac/solver_gmres.h
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ namespace internal
template <typename VectorType>
struct is_dealii_compatible_distributed_vector<
VectorType,
typename std::enable_if<!internal::is_block_vector<VectorType>>::type>
std::enable_if_t<!internal::is_block_vector<VectorType>>>
{
static constexpr bool value = std::is_same_v<
VectorType,
Expand All @@ -747,7 +747,7 @@ namespace internal
template <typename VectorType>
struct is_dealii_compatible_distributed_vector<
VectorType,
typename std::enable_if<internal::is_block_vector<VectorType>>::type>
std::enable_if_t<internal::is_block_vector<VectorType>>>
{
static constexpr bool value = std::is_same_v<
typename VectorType::BlockType,
Expand Down