Skip to content

Commit

Permalink
Remove superfluous brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Apr 26, 2024
1 parent 44608b9 commit 57595e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tao/pq/row.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ namespace tao::pq
return get< T >( 0 );
}

template< typename T, typename = std::enable_if_t< ( is_aggregate_result< T > ) > >
template< typename T, typename = std::enable_if_t< is_aggregate_result< T > > >
[[nodiscard]] operator T() const
{
return as< T >();
Expand Down

0 comments on commit 57595e2

Please sign in to comment.