Skip to content

Commit

Permalink
fixup! add requires
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin committed Feb 13, 2025
1 parent 5d1d898 commit 5e06f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/Condition.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct Condition {
template <typename T>
concept is_condition = requires(T t) {
typename T::type;
requires std::same_as<T*, decltype(t.instance)>;
requires std::same_as<typename T::type*, decltype(t.instance)>;
requires std::same_as<std::string, decltype(t.path)>;
};

Expand Down

0 comments on commit 5e06f1d

Please sign in to comment.