Skip to content

Commit

Permalink
Fix format.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Sep 22, 2021
1 parent 46b79a5 commit 5a5fcdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tao/json/binding/element.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ namespace tao::json::binding
}
};

#if defined(__GNUC__) || defined(__clang__)
#if defined( __GNUC__ ) || defined( __clang__ )

template< bool N, typename C, typename T, T ( *P )( const C& ) noexcept( N ) >
struct element< T ( * )( const C& ) noexcept( N ), P >
Expand Down Expand Up @@ -145,7 +145,7 @@ namespace tao::json::binding
template< typename CT, CT CP, typename T, T P >
struct element2;

#if defined(__GNUC__) || defined(__clang__)
#if defined( __GNUC__ ) || defined( __clang__ )

template< bool CN, bool N, typename A, typename CR, CR ( *CP )( const A& ) noexcept( CN ), typename R, R ( *P )( A& ) noexcept( N ) >
struct element2< CR ( * )( const A& ) noexcept( CN ), CP, R ( * )( A& ) noexcept( N ), P >
Expand Down

0 comments on commit 5a5fcdd

Please sign in to comment.