Skip to content

Commit 51dd85f

Browse files
committed
tets
1 parent cce18a6 commit 51dd85f

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

Rx/v2/src/rxcpp/operators/rx-concat_map.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ struct concat_map
115115
collection_selector_type selectCollection;
116116
result_selector_type selectResult;
117117
coordination_type coordination;
118+
private:
119+
values& operator=(const values&) RXCPP_DELETE;
118120
};
119121
values initial;
120122

@@ -273,6 +275,8 @@ struct concat_map
273275
source->subscribe(std::move(selectedSink.get()));
274276

275277
}
278+
private:
279+
concat_map& operator=(const concat_map&) RXCPP_DELETE;
276280
};
277281

278282
}

Rx/v2/src/rxcpp/operators/rx-reduce.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ struct reduce : public operator_base<rxu::value_type_t<reduce_traits<T, Observab
124124
accumulator_type accumulator;
125125
result_selector_type result_selector;
126126
seed_type seed;
127+
128+
private:
129+
reduce_initial_type& operator=(reduce_initial_type o) RXCPP_DELETE;
127130
};
128131
reduce_initial_type initial;
129132

@@ -178,6 +181,8 @@ struct reduce : public operator_base<rxu::value_type_t<reduce_traits<T, Observab
178181
}
179182
);
180183
}
184+
private:
185+
reduce& operator=(reduce o) RXCPP_DELETE;
181186
};
182187

183188
template<class T>

Rx/v2/src/rxcpp/operators/rx-subscribe_on.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ struct subscribe_on : public operator_base<T>
5959
}
6060
source_type source;
6161
coordination_type coordination;
62+
private:
63+
subscribe_on_values& operator=(subscribe_on_values o) RXCPP_DELETE;
6264
};
6365
const subscribe_on_values initial;
6466

@@ -85,6 +87,8 @@ struct subscribe_on : public operator_base<T>
8587
}
8688
composite_subscription source_lifetime;
8789
output_type out;
90+
private:
91+
subscribe_on_state_type& operator=(subscribe_on_state_type o) RXCPP_DELETE;
8892
};
8993

9094
composite_subscription coordinator_lifetime;
@@ -134,6 +138,8 @@ struct subscribe_on : public operator_base<T>
134138

135139
controller.schedule(selectedProducer.get());
136140
}
141+
private:
142+
subscribe_on& operator=(subscribe_on o) RXCPP_DELETE;
137143
};
138144

139145
}

0 commit comments

Comments
 (0)