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 dc55aac commit 7aed0baCopy full SHA for 7aed0ba
sycl/include/sycl/ext/oneapi/sub_group_mask.hpp
@@ -252,10 +252,9 @@ struct sub_group_mask {
252
return Tmp;
253
}
254
255
- sub_group_mask(const sub_group_mask &rhs)
256
- : Bits(rhs.Bits), bits_num(rhs.bits_num) {}
+ sub_group_mask(const sub_group_mask &rhs) = default;
257
258
- sub_group_mask &operator=(const sub_group_mask &rhs) = delete;
+ sub_group_mask &operator=(const sub_group_mask &rhs) = default;
259
260
template <typename Group>
261
friend std::enable_if_t<std::is_same_v<std::decay_t<Group>, sub_group>,
0 commit comments