Skip to content

Commit 711b442

Browse files
committed
Fix clang build errors
1 parent d11d9a1 commit 711b442

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/cuco/detail/hyperloglog/hyperloglog_impl.cuh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ class hyperloglog_impl {
175175
template <class InputIt>
176176
__host__ constexpr void add_async(InputIt first, InputIt last, cuda::stream_ref stream)
177177
{
178-
auto const always_true = thrust::constant_iterator<bool>(true);
179-
this->add_if_async(first, last, always_true, cuda::std::identity{}, stream);
178+
this->add_if_async(
179+
first, last, thrust::constant_iterator<bool>{true}, cuda::std::identity{}, stream);
180180
}
181181

182182
/**

0 commit comments

Comments
 (0)