We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7076d9e commit 316a659Copy full SHA for 316a659
src/rime/config/plugins.h
@@ -17,6 +17,8 @@ class ConfigCompilerPlugin {
17
typedef bool Review(ConfigCompiler* compiler,
18
an<ConfigResource> resource);
19
20
+ virtual ~ConfigCompilerPlugin() = default;
21
+
22
virtual Review ReviewCompileOutput = 0;
23
virtual Review ReviewLinkOutput = 0;
24
};
@@ -57,7 +59,7 @@ struct ResourceType;
57
59
class SaveOutputPlugin : public ConfigCompilerPlugin {
58
60
public:
61
SaveOutputPlugin(const ResourceType& output_resource);
- ~SaveOutputPlugin();
62
+ virtual ~SaveOutputPlugin();
63
64
Review ReviewCompileOutput;
65
Review ReviewLinkOutput;
0 commit comments