[llvm] [mlir] eliminating g++ warnings (PR #105520)

Mehdi Amini via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 13 03:12:17 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
----------------
joker-eph wrote:

It does not need to exist if not for the warning...

https://github.com/llvm/llvm-project/pull/105520


More information about the llvm-commits mailing list