Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Dec 10, 2024
1 parent 1b00cda commit 57ddbde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tao/pq/transaction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ namespace tao::pq
}

template< parameter_type... As >
requires( parameter_type_composite< As > || ... )
requires( parameter_type_dynamic< As > || ... )
void send( const internal::zsv statement, As&&... as )
{
const parameter< internal::parameter_size< As... > > p( std::forward< As >( as )... );
send_params( statement, p.m_size, p.m_types, p.m_values, p.m_lengths, p.m_formats );
}

template< parameter_type_composite A >
template< parameter_type_dynamic A >
void send( const internal::zsv statement, A&& p )
{
send_params( statement, p.m_size, p.m_types, p.m_values, p.m_lengths, p.m_formats );
Expand Down

0 comments on commit 57ddbde

Please sign in to comment.