Skip to content

Commit

Permalink
Fix build error introduced by previous commit (#1224)
Browse files Browse the repository at this point in the history
Note that the `check-index-version` workflow will still fail for this commit because it checks out the previous version of the master, which because of the build error we are fixing here does not compile. Everything should be fine again starting with the next commit after this one.
  • Loading branch information
kcaliban committed Jan 13, 2024
1 parent f9e00ef commit 34af3a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/GroupBy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ void GroupBy::createResultFromHashMap(
// _____________________________________________________________________________
template <typename A>
concept SupportedAggregates =
ad_utility::isTypeContainedIn<A, GroupBy::Aggregations>;
ad_utility::SameAsAnyTypeIn<A, GroupBy::Aggregations>;

// _____________________________________________________________________________
// Visitor function to extract values from the result of an evaluation of
Expand Down

0 comments on commit 34af3a7

Please sign in to comment.