Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Oct 20, 2024
1 parent a0f7f84 commit 2f3c035
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/podio/utilities/TypeHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ namespace det {
using detected_or = detail::detector<DefT, void, Op, Args...>;

template <template <typename...> typename Op, typename... Args>
constexpr bool is_detected_v = requires { typename Op<Args...>; };
constexpr bool is_detected_v = requires {
typename Op<Args...>;
};

} // namespace det

Expand All @@ -53,7 +55,6 @@ namespace detail {
template <typename T, typename Tuple>
static constexpr bool isInTuple = TypeInTupleHelper<T, Tuple>::value;


/// Helper struct to turn a tuple of types into a tuple of a template of types, e.g.
///
/// std::tuple<int, float> -> std::tuple<std::vector<int>, std::vector<float>>
Expand Down

0 comments on commit 2f3c035

Please sign in to comment.