Skip to content

Commit

Permalink
Fix broken rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
sethhillbrand committed Jul 17, 2024
1 parent 1d307d4 commit a13df1e
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions include/base_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -336,21 +336,12 @@ struct hash<BASE_SET>
{
size_t operator()( const BASE_SET& bs ) const
{
<<<<<<< HEAD
size_t hashVal = 0;

for( const auto& bit : bs )
hashVal = hashVal * 31 + std::hash<int>()( bit );

return hashVal;
=======
size_t hash_val = 0;

for( const auto& bit : bs )
hash_val = hash_val * 31 + std::hash<int>()( bit );

return hash_val;
>>>>>>> 7080b9e5f7 (Fix shadowing)
}
};
} // namespace std
Expand Down

0 comments on commit a13df1e

Please sign in to comment.