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.
LoadedExecutablePlugin::PluginProcess
1 parent 665515c commit a0b0590Copy full SHA for a0b0590
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