We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d95f4a6 commit 9ac969aCopy full SHA for 9ac969a
thrust/detail/tuple_algorithms.h
@@ -39,7 +39,7 @@ template <typename Tuple, typename F, std::size_t... Is>
39
void tuple_for_each_impl(Tuple&& t, F&& f, index_sequence<Is...>)
40
{
41
auto l = { (f(std::get<Is>(t)), 0)... };
42
- THRUST_UNUSED(l);
+ THRUST_UNUSED_VAR(l);
43
}
44
45
template <typename Tuple, typename F, std::size_t... Is>
0 commit comments