Skip to content

Commit

Permalink
fix minor
Browse files Browse the repository at this point in the history
Signed-off-by: Martijn Govers <Martijn.Govers@Alliander.com>
  • Loading branch information
mgovers committed Jul 3, 2024
1 parent d21ab81 commit e4a617e
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ namespace power_grid_model {
template <class... T> struct ComponentList {};

template <typename... Ts> struct IsInList : std::false_type {};
// template <typename T, typename... Ts>
// requires(std::same_as<std::remove_const_t<T>, Ts> || ...)
// struct IsInList : std::true_type {};
template <typename T, typename... Ts>
requires is_in_list_c<T, Ts...>
struct IsInList<T, ComponentList<Ts...>> : std::true_type {};
Expand Down

0 comments on commit e4a617e

Please sign in to comment.