Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Dec 5, 2024
1 parent 4841171 commit 5dae77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/pq/result_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ static_assert( tao::pq::result_type< std::list< std::string_view > > );
static_assert( tao::pq::result_type< std::set< double > > );
static_assert( tao::pq::result_type< std::unordered_set< char > > );
static_assert( !tao::pq::result_type< std::set< std::pair< int, double > > > );
static_assert( !tao::pq::result_type_direct< std::set< std::tuple<> > > );
static_assert( !tao::pq::result_type< std::set< std::tuple<> > > );
static_assert( tao::pq::result_type< std::set< std::tuple< int > > > );
static_assert( !tao::pq::result_type< std::set< std::tuple< bool, int, double > > > );

Expand Down

0 comments on commit 5dae77a

Please sign in to comment.