Skip to content

Commit c0a90f1

Browse files
committed
fixed braces
1 parent bf654a0 commit c0a90f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Pass/Pass.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class Pass {
9494
Option(Pass &parent, StringRef arg, Args &&...args)
9595
: detail::PassOptions::Option<DataType, OptionParser>(
9696
parent.passOptions, arg, std::forward<Args>(args)...) {}
97-
Option &operator=(const Option &other) = default; // gcc11
97+
Option &operator=(const Option &other) = default; // gcc11 -Wdeprecated-copy
9898
using detail::PassOptions::Option<DataType, OptionParser>::operator=;
9999
};
100100
/// This class represents a specific pass option that contains a list of

0 commit comments

Comments
 (0)