Skip to content

Commit

Permalink
Format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JoBuRo committed Apr 16, 2024
1 parent a768eb0 commit 8a0bee4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/engine/TransitivePathBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ struct TransitivePathSide {
// We deliberately use the `std::` variants of a hash set and hash map because
// `absl`s types are not exception safe.
struct HashId {
auto operator()(Id id) const {
return std::hash<uint64_t>{}(id.getBits());
}
auto operator()(Id id) const { return std::hash<uint64_t>{}(id.getBits()); }
};

using Set = std::unordered_set<Id, HashId, std::equal_to<Id>,
Expand Down

0 comments on commit 8a0bee4

Please sign in to comment.