[llvm] [LLVM][DWARF] Add support for .gnu_debuglink (PR #77715)
David Blaikie via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 11 09:59:49 PST 2024
================
@@ -202,6 +202,7 @@ template <typename T> class OwningBinary {
OwningBinary(std::unique_ptr<T> Bin, std::unique_ptr<MemoryBuffer> Buf);
OwningBinary(OwningBinary<T>&& Other);
OwningBinary<T> &operator=(OwningBinary<T> &&Other);
+ void operator()(OwningBinary<T> &&Other);
----------------
dwblaikie wrote:
why is this a function call operator? How is this different from the move operator above?
https://github.com/llvm/llvm-project/pull/77715
More information about the llvm-commits
mailing list