[Mlir-commits] [llvm] [mlir] eliminating g++ warnings (PR #105520)
Frank Schlimbach
llvmlistbot at llvm.org
Fri Sep 13 00:56:35 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
----------------
fschlimb wrote:
See above, done.
https://github.com/llvm/llvm-project/pull/105520
More information about the Mlir-commits
mailing list