Skip to content

Commit 1c715b6

Browse files
committed
format
1 parent 80cd8f4 commit 1c715b6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Framework/Core/src/Expressions.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -783,11 +783,11 @@ bool isTableCompatible(std::span<const uint32_t> hashes, Operations const& specs
783783
auto [ret, last] = std::ranges::unique(opHashes);
784784
opHashes.erase(ret, last);
785785
bool contains = true;
786-
std::ranges::for_each(opHashes, [hashes, &contains](auto const& hash){
787-
contains = contains && std::ranges::any_of(hashes, [hash](auto const& h){
788-
return h == hash;
789-
});
790-
});
786+
std::ranges::for_each(opHashes, [hashes, &contains](auto const& hash) {
787+
contains = contains && std::ranges::any_of(hashes, [hash](auto const& h) {
788+
return h == hash;
789+
});
790+
});
791791
return contains;
792792
}
793793

0 commit comments

Comments
 (0)