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 {
143143
144144public:
145145 explicit DialectRegistry ();
146+ DialectRegistry (const DialectRegistry &) = delete ;
146147
147148 template <typename ConcreteDialect>
148149 void insert () {
Original file line number Diff line number Diff line change @@ -985,7 +985,7 @@ struct OperationState {
985985 BlockRange successors = {},
986986 MutableArrayRef<std::unique_ptr<Region>> regions = {});
987987 OperationState (OperationState &&other) = default ;
988- OperationState (const OperationState &other) = default ;
988+ OperationState (const OperationState &other) = delete ;
989989 OperationState &operator =(OperationState &&other) = default ;
990990 OperationState &operator =(const OperationState &other) = default ;
991991 ~OperationState ();
You can’t perform that action at this time.
0 commit comments