Skip to content

Commit

Permalink
Applied clang-format.
Browse files Browse the repository at this point in the history
  • Loading branch information
maierlars authored and Naios committed Dec 3, 2020
1 parent 5e6c6f0 commit c8eb35a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/function2/function2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ template <bool RequiresNoexcept, typename T, typename Args>
struct is_noexcept_correct : std::true_type {};
template <typename T, typename... Args>
struct is_noexcept_correct<true, T, identity<Args...>>
: std::integral_constant<bool, noexcept((invoke)(std::declval<T>(),
std::declval<Args>()...))> {
};
: std::integral_constant<bool,
noexcept((invoke)(std::declval<T>(),
std::declval<Args>()...))> {};
} // end namespace invocation

namespace overloading {
Expand Down

0 comments on commit c8eb35a

Please sign in to comment.