Skip to content

Commit

Permalink
Add missing typename
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Nov 11, 2024
1 parent a874020 commit 3d0e8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tao/pq/result.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace tao::pq
namespace internal
{
template< typename T >
concept has_reserve = requires( T t, T::size_type s ) { t.reserve( s ); };
concept has_reserve = requires( T t, typename T::size_type s ) { t.reserve( s ); };

} // namespace internal

Expand Down

0 comments on commit 3d0e8b2

Please sign in to comment.