We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf654a0 commit c0a90f1Copy full SHA for c0a90f1
mlir/include/mlir/Pass/Pass.h
@@ -94,7 +94,7 @@ class Pass {
94
Option(Pass &parent, StringRef arg, Args &&...args)
95
: detail::PassOptions::Option<DataType, OptionParser>(
96
parent.passOptions, arg, std::forward<Args>(args)...) {}
97
- Option &operator=(const Option &other) = default; // gcc11
+ Option &operator=(const Option &other) = default; // gcc11 -Wdeprecated-copy
98
using detail::PassOptions::Option<DataType, OptionParser>::operator=;
99
};
100
/// This class represents a specific pass option that contains a list of
0 commit comments