File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ class DialectRegistry {
143
143
144
144
public:
145
145
explicit DialectRegistry ();
146
+ DialectRegistry (const DialectRegistry &) = delete ;
146
147
147
148
template <typename ConcreteDialect>
148
149
void insert () {
Original file line number Diff line number Diff line change @@ -985,7 +985,7 @@ struct OperationState {
985
985
BlockRange successors = {},
986
986
MutableArrayRef<std::unique_ptr<Region>> regions = {});
987
987
OperationState (OperationState &&other) = default ;
988
- OperationState (const OperationState &other) = default ;
988
+ OperationState (const OperationState &other) = delete ;
989
989
OperationState &operator =(OperationState &&other) = default ;
990
990
OperationState &operator =(const OperationState &other) = default ;
991
991
~OperationState ();
You can’t perform that action at this time.
0 commit comments