diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-03 13:58:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-03 13:58:53 +0200 |
commit | decfa1ff8780c456dbcde966b0b1441121213cb1 (patch) | |
tree | 3303b6bba943f478b551cde55b0824c009667174 /compilerplugins | |
parent | 6e0a152350dbb476ef70ad9b17d57607fadc0666 (diff) |
Disable loplugin:casttovoid for now
I'd accidentally developed it against a Clang built without
LLVM_ENABLE_ASSERTIONS=ON, so only saw issues with
containsPreprocessingConditionalInclusion() now.
Change-Id: I5da6775a06de748e78b34a42f63b0543c3893124
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/casttovoid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/casttovoid.cxx b/compilerplugins/clang/casttovoid.cxx index 997f7ed83e7c..37608adcdc3f 100644 --- a/compilerplugins/clang/casttovoid.cxx +++ b/compilerplugins/clang/casttovoid.cxx @@ -487,7 +487,7 @@ private: } }; -static loplugin::Plugin::Registration<Visitor> reg("casttovoid"); +static loplugin::Plugin::Registration<Visitor> reg("casttovoid", false); } |