[Mlir-commits] [llvm] [mlir] eliminating g++ warnings (PR #105520)
David Blaikie
llvmlistbot at llvm.org
Mon Sep 16 10:39:02 PDT 2024
================
@@ -94,6 +94,7 @@ class Pass {
Option(Pass &parent, StringRef arg, Args &&...args)
: detail::PassOptions::Option<DataType, OptionParser>(
parent.passOptions, arg, std::forward<Args>(args)...) {}
+ Option &operator=(const Option &other) = default; // gcc11 -Wdeprecated-copy
----------------
dwblaikie wrote:
awesome, thanks!
https://github.com/llvm/llvm-project/pull/105520
More information about the Mlir-commits
mailing list