[PATCH] D34307: Have writeCOFFWriter return Expected<unique_ptr>.

Rui Ueyama via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 16 17:54:55 PDT 2017


ruiu added inline comments.


================
Comment at: llvm/lib/Object/WindowsResource.cpp:312-314
+  WindowsResourceCOFFWriter(const WindowsResourceCOFFWriter &) = delete;
+  WindowsResourceCOFFWriter &
+  operator=(const WindowsResourceCOFFWriter &) = delete;
----------------
Do you have to explicitly delete these copy ctors?


https://reviews.llvm.org/D34307





More information about the llvm-commits mailing list