aboutsummaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-02-05 01:44:10 +0100
committerJay Berkenbilt <ejb@ql.org>2022-02-05 17:24:56 +0100
commit88c3d556d552a94aa42eaa2fa43667952e123dc8 (patch)
tree83a41f48883dc70a3610196c166c01a2d77f9993 /TODO
parente782d5e951e33b31068e0e71e7ce99a88b882544 (diff)
downloadqpdf-88c3d556d552a94aa42eaa2fa43667952e123dc8.tar.zst
Spell check
Diffstat (limited to 'TODO')
-rw-r--r--TODO4
1 files changed, 2 insertions, 2 deletions
diff --git a/TODO b/TODO
index 327e53c3..222e200a 100644
--- a/TODO
+++ b/TODO
@@ -344,7 +344,7 @@ PointerHolder to std::shared_ptr
================================
Once all deprecation warnings are cleared up (changing getPointer() to
-get() and getRefcout() to use_count()), the only real issues are that
+get() and getRefcount() to use_count()), the only real issues are that
implicit assignment of a pointer to a shared_ptr doesn't work while it
does for PointerHolder and containers are different. Using auto takes
care of containers.
@@ -402,7 +402,7 @@ Strategy:
* Replace each public API one at a time
* Replace remaining internal uses; sometimes unique_ptr may be good,
particularly for temporary strings that are deleted in the same
- scope and Members for non-copiable classes
+ scope and Members for non-copyable classes
* std::shared_ptr<Members> m can be replaced with
std::shared_ptr<Members> m_ph and Members* m if performance is critical
* Remove #include <PointerHolder.hh> from all headers