Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Dec 10, 2024
1 parent 3ea59b9 commit 1b00cda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tao/pq/parameter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ namespace tao::pq
} // namespace internal

template< typename T >
concept parameter_type_composite = internal::is_parameter< std::decay_t< T > >;
concept parameter_type_dynamic = internal::is_parameter< std::decay_t< T > >;

template< typename T >
concept parameter_type = parameter_type_direct< T > || parameter_type_composite< T >;
concept parameter_type = parameter_type_direct< T > || parameter_type_dynamic< T >;

template< std::size_t Max >
class parameter
Expand Down

0 comments on commit 1b00cda

Please sign in to comment.