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.
2 parents 00aa22f + a0b0590 commit fad9e24Copy full SHA for fad9e24
include/swift/AST/PluginRegistry.h
@@ -152,6 +152,9 @@ class LoadedExecutablePlugin : public CompilerPlugin {
152
: process(process), input(input), output(output) {}
153
~PluginProcess();
154
155
+ PluginProcess(const PluginProcess &) = delete;
156
+ PluginProcess &operator=(const PluginProcess &) = delete;
157
+
158
ssize_t write(const void *buf, size_t nbyte) const;
159
ssize_t read(void *buf, size_t nbyte) const;
160
};
0 commit comments