Skip to content

Commit

Permalink
clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Dec 27, 2024
1 parent 7d23216 commit 5f263c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tao/pq/internal/format_as.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct std::formatter< T > : std::formatter< decltype( taopq_format_as( std::dec

template< typename T >
requires requires { taopq_format_as( std::declval< T >() ); }
std::ostream& operator<<( std::ostream& os, const T& v )
auto operator<<( std::ostream& os, const T& v ) -> std::ostream&
{
return os << taopq_format_as( v );
}
Expand Down

0 comments on commit 5f263c3

Please sign in to comment.