You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,5 +61,5 @@ int main() {
61
61
-`observable_unique_ptr` does not support custom allocators, but `std::shared_ptr` does.
62
62
-`observable_unique_ptr` does not have a `release()` function to let go of the ownership, which `std::unique_ptr` has.
63
63
-`observable_unique_ptr` allows moving from other `observable_unique_ptr` only if the deleter type is exactly the same, while `std::unique_ptr` allows moving from a convertible deleter.
64
-
-`observable_unique_ptr` may or may not own a deleter instance; if in doubt, check `has_deleter()`` before calling `get_deleter()`, or use `try_get_deleter()`.
64
+
-`observable_unique_ptr` may or may not own a deleter instance; if in doubt, check `has_deleter()` before calling `get_deleter()`, or use `try_get_deleter()`.
65
65
- a moved-from `observable_unique_ptr` will not own a deleter instance.
0 commit comments