Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Format.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhemstad committed Jun 8, 2021
1 parent 906f5fa commit c1c879a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thrust/detail/pair.inl
Original file line number Diff line number Diff line change
Expand Up @@ -146,15 +146,15 @@ template<typename T1, typename T2>
}; // end tuple_element

template<typename T1, typename T2>
struct tuple_element<1, pair<T1,T2> const >
struct tuple_element<1, pair<T1,T2> const>
{
typedef T2 type;
}; // end tuple_element


// specialization of tuple_size for pair
template<typename T1, typename T2>
struct tuple_size< pair<T1,T2> const >
struct tuple_size<pair<T1,T2> const>
{
static const unsigned int value = 2;
}; // end tuple_size
Expand Down

0 comments on commit c1c879a

Please sign in to comment.