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 42b9f2f + fad9e24 commit 076da50Copy full SHA for 076da50
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