diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-06 12:52:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-06 12:52:05 +0200 |
commit | 05400958b0a06812fb38cf7644f30eebe2ab3768 (patch) | |
tree | fc721bfac9900dc15193004bdce16b8f0c925587 /compilerplugins | |
parent | 38ccea5588f3c72ab0d76ef13e1371a414207700 (diff) |
disable constparams loplugin
increases compile time too much, I will run this by hand periodically
Change-Id: I118567ef294847ff609d4de771d998ce3b57161b
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/constparams.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/constparams.cxx b/compilerplugins/clang/constparams.cxx index 5ce9df2e5e2c..87a00ec488c3 100644 --- a/compilerplugins/clang/constparams.cxx +++ b/compilerplugins/clang/constparams.cxx @@ -571,7 +571,7 @@ bool ConstParams::isPointerOrReferenceToConst(const QualType& qt) { return false; } -loplugin::Plugin::Registration< ConstParams > X("constparams", true); +loplugin::Plugin::Registration< ConstParams > X("constparams", false); } |