File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,6 @@ struct control_block {
3939* less thread-safety compared to std::shared_ptr.
4040* - observable_unique_ptr does not support arrays.
4141* - observable_unique_ptr does not allow custom allocators.
42- * - observable_unique_ptr does not have a release() function to let go of
43- * the ownership.
44- * - observable_unique_ptr allows moving from other observable_unique_ptr
45- * only if the deleter type is exactly the same, while std::unique_ptr
46- * allows moving from a convertible deleter.
47- * - observable_unique_ptr may not own a deleter instance; if in doubt, check
48- * has_deleter() before calling get_deleter(), or use try_get_deleter().
49- * - a moved-from observable_unique_ptr will not own a deleter instance.
5042*/
5143template <typename T, typename Deleter = std::default_delete<T>>
5244class observable_unique_ptr {
You can’t perform that action at this time.
0 commit comments