Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianbs96 committed Aug 18, 2023
1 parent fe64bc5 commit 7b5f0f3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions include/phasar/Utils/TypeTraits.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,7 @@ static inline constexpr bool AreEqualityComparable =
detail::AreEqualityComparable<T, U>::value;

#if __cplusplus < 202002L
template <typename T> struct type_identity {
using type = T;
};
template <typename T> struct type_identity { using type = T; };
#else
template <typename T> using type_identity = std::type_identity<T>;
#endif
Expand Down

0 comments on commit 7b5f0f3

Please sign in to comment.