Skip to content

Commit fad9e24

Browse files
authored
Merge pull request #82201 from hamishknight/no-copy
2 parents 00aa22f + a0b0590 commit fad9e24

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/swift/AST/PluginRegistry.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,9 @@ class LoadedExecutablePlugin : public CompilerPlugin {
152152
: process(process), input(input), output(output) {}
153153
~PluginProcess();
154154

155+
PluginProcess(const PluginProcess &) = delete;
156+
PluginProcess &operator=(const PluginProcess &) = delete;
157+
155158
ssize_t write(const void *buf, size_t nbyte) const;
156159
ssize_t read(void *buf, size_t nbyte) const;
157160
};

0 commit comments

Comments
 (0)