diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-15 15:25:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:16 +0100 |
commit | 6f69fb5d7d7f66d17b56eca5a5b3f494c597b97a (patch) | |
tree | 6d0ca11b223bc543535fd7d19760d69e70b97c0b /compilerplugins/clang/pluginhandler.hxx | |
parent | be0177fe422f283e4ab87acd4d6d092366b25bc3 (diff) |
Run the non-rewriter plugins even when rewriters are specified
Change-Id: I8262091c52522c54f84c0fac5fd180871d4a3a9f
Diffstat (limited to 'compilerplugins/clang/pluginhandler.hxx')
-rw-r--r-- | compilerplugins/clang/pluginhandler.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/pluginhandler.hxx b/compilerplugins/clang/pluginhandler.hxx index 46c620b94847..dcfac71abdee 100644 --- a/compilerplugins/clang/pluginhandler.hxx +++ b/compilerplugins/clang/pluginhandler.hxx @@ -35,7 +35,7 @@ class PluginHandler CompilerInstance& compiler, SourceLocation loc = SourceLocation()); private: void handleOption( const string& option ); - void createPlugin( const string& name ); + void createPlugins( set< string > rewriters ); DiagnosticBuilder report( DiagnosticsEngine::Level level, StringRef message, SourceLocation loc = SourceLocation()); CompilerInstance& compiler; Rewriter rewriter; |