From cc6a8a3738de61efb53c7a86bd9674d364631fe3 Mon Sep 17 00:00:00 2001 From: Elias Stehle <3958403+elstehle@users.noreply.github.com> Date: Tue, 28 Jan 2025 12:31:17 -0800 Subject: [PATCH] fixes return type of tabulate out iter --- thrust/thrust/iterator/detail/tabulate_output_iterator.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thrust/thrust/iterator/detail/tabulate_output_iterator.inl b/thrust/thrust/iterator/detail/tabulate_output_iterator.inl index f9b740bca6b..56c093ff56a 100644 --- a/thrust/thrust/iterator/detail/tabulate_output_iterator.inl +++ b/thrust/thrust/iterator/detail/tabulate_output_iterator.inl @@ -53,7 +53,7 @@ template using tabulate_output_iterator_base = thrust::iterator_adaptor, counting_iterator, - thrust::use_default, + void, System, thrust::use_default, tabulate_output_iterator_proxy>;