dexonsmith added a comment.

Thanks for the review!



================
Comment at: llvm/include/llvm/ADT/IntrusiveRefCntPtr.h:180
+  template <class X>
+  IntrusiveRefCntPtr(std::unique_ptr<X> &&S) : Obj(S.release()) {
+    retain();
----------------
dblaikie wrote:
> Pass 'S' by value here - that's the usual way to pass ownership of 
> unique_ptr, and unlike the IntrusiveRefCntPtr's copy/move ctors there's no 
> issue with invoking the operation in its implementation (infinitely 
> recursively).
Right, thanks; I'll update it that way before pushing the commit.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D92888/new/

https://reviews.llvm.org/D92888

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
  • [PATCH] D92888: AD... Duncan P. N. Exon Smith via Phabricator via cfe-commits
    • [PATCH] D9288... David Blaikie via Phabricator via cfe-commits
    • [PATCH] D9288... Duncan P. N. Exon Smith via Phabricator via cfe-commits
    • [PATCH] D9288... Jonas Devlieghere via Phabricator via cfe-commits
    • [PATCH] D9288... Duncan P. N. Exon Smith via Phabricator via cfe-commits

Reply via email to