Skip to content

Commit

Permalink
Replace deprecated _VSTD macro with std (#1331)
Browse files Browse the repository at this point in the history
* Replace deprecated `_VSTD` macro with `std`
  • Loading branch information
rupprecht authored Feb 7, 2024
1 parent 7a74659 commit 3566a8b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions thrust/thrust/type_traits/is_contiguous_iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,11 @@ struct is_libcxx_wrap_iter : false_type {};
#if defined(_LIBCPP_VERSION)
template <typename Iterator>
struct is_libcxx_wrap_iter<
# if _LIBCPP_VERSION < 14000
_VSTD::__wrap_iter<Iterator>
# else
std::__wrap_iter<Iterator>
# endif
> : true_type {};
#endif

Expand Down

0 comments on commit 3566a8b

Please sign in to comment.