Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Framework/Core/src/Expressions.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -783,11 +783,11 @@ bool isTableCompatible(std::span<const uint32_t> hashes, Operations const& specs
auto [ret, last] = std::ranges::unique(opHashes);
opHashes.erase(ret, last);
bool contains = true;
std::ranges::for_each(opHashes, [hashes, &contains](auto const& hash){
contains = contains && std::ranges::any_of(hashes, [hash](auto const& h){
return h == hash;
});
});
std::ranges::for_each(opHashes, [hashes, &contains](auto const& hash) {
contains = contains && std::ranges::any_of(hashes, [hash](auto const& h) {
return h == hash;
});
});
return contains;
}

Expand Down