Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Aug 28, 2024
1 parent d46621f commit e1c9744
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/flatmemory/details/types/tuple.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ std::ostream& operator<<(std::ostream& out, ConstView<Tuple<Ts...>> element)

}

template<typename... Ts>
template<flatmemory::IsTriviallyCopyableOrNonTrivialType... Ts>
struct std::hash<flatmemory::Builder<flatmemory::Tuple<Ts...>>>
{
size_t operator()(const flatmemory::Builder<flatmemory::Tuple<Ts...>>& tuple) const
Expand All @@ -503,7 +503,7 @@ struct std::hash<flatmemory::Builder<flatmemory::Tuple<Ts...>>>
}
};

template<typename... Ts>
template<flatmemory::IsTriviallyCopyableOrNonTrivialType... Ts>
struct std::hash<flatmemory::View<flatmemory::Tuple<Ts...>>>
{
size_t operator()(const flatmemory::View<flatmemory::Tuple<Ts...>>& tuple) const
Expand All @@ -515,7 +515,7 @@ struct std::hash<flatmemory::View<flatmemory::Tuple<Ts...>>>
}
};

template<typename... Ts>
template<flatmemory::IsTriviallyCopyableOrNonTrivialType... Ts>
struct std::hash<flatmemory::ConstView<flatmemory::Tuple<Ts...>>>
{
size_t operator()(const flatmemory::ConstView<flatmemory::Tuple<Ts...>>& tuple) const
Expand Down

0 comments on commit e1c9744

Please sign in to comment.