Skip to content

Commit d2ccfeb

Browse files
committed
Do not pretend to default initialize a device lambda
Found in CCCL CI
1 parent d8d929d commit d2ccfeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpp/src/prims/count_if_v.cuh

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ namespace detail {
3535

3636
template <typename vertex_t, typename VertexValueInputIterator, typename VertexOp>
3737
struct count_if_call_v_op_t {
38-
vertex_t local_vertex_partition_range_first{};
39-
VertexValueInputIterator vertex_value_input_first{};
40-
VertexOp v_op{};
38+
vertex_t local_vertex_partition_range_first;
39+
VertexValueInputIterator vertex_value_input_first;
40+
VertexOp v_op;
4141

4242
__device__ bool operator()(vertex_t i)
4343
{

0 commit comments

Comments
 (0)