Skip to content

Commit

Permalink
Fix erroneous macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Dec 9, 2021
1 parent 3937104 commit 3192065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/iterator/optional_iterator_test_numeric.cu
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct transformer_optional_meanvar {

template <typename T>
struct optional_to_meanvar {
CUDA_HDI T operator()(const thrust::optional<T>& v) { return v.value_or(T{0}); }
CUDF_HDI T operator()(const thrust::optional<T>& v) { return v.value_or(T{0}); }
};

// TODO: enable this test also at __CUDACC_DEBUG__
Expand Down

0 comments on commit 3192065

Please sign in to comment.