summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/pointertobool.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-27 13:09:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-27 13:12:33 +0100
commit1f078fcaddd45bb074e4d0a4933db01f6e8b623e (patch)
treeb3c91e350f82022ff0a4d2d20f89ea050b6ea69b /compilerplugins/clang/pointertobool.cxx
parenta94f0f92e8b09f6cd3989b646500ff5814274621 (diff)
Prepare dual-mode compiler plugin feature
...which can act as either a rewriter or a non-rewriter that emits warnings. Also added COMPILER_PLUGIN_WARNINGS_ONLY=X to demote warnings from plugin X from errors to warnings, even under --enable-werror. Change-Id: I05361936240a890515c6bba2459565417c1746b7
Diffstat (limited to 'compilerplugins/clang/pointertobool.cxx')
-rw-r--r--compilerplugins/clang/pointertobool.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/compilerplugins/clang/pointertobool.cxx b/compilerplugins/clang/pointertobool.cxx
index 809e50b5c132..d1637cf5525c 100644
--- a/compilerplugins/clang/pointertobool.cxx
+++ b/compilerplugins/clang/pointertobool.cxx
@@ -41,15 +41,15 @@ class PointerToBool
, public Plugin
{
public:
- explicit PointerToBool( CompilerInstance& compiler );
+ explicit PointerToBool( const InstantiationData& data );
void run();
bool VisitImplicitCastExpr( const ImplicitCastExpr* expr );
private:
bool ignoreConversion( const Stmt* stmt );
};
-PointerToBool::PointerToBool( CompilerInstance& compiler )
- : Plugin( compiler )
+PointerToBool::PointerToBool( const InstantiationData& data )
+ : Plugin( data )
{
}