diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-21 18:07:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-21 18:07:36 +0200 |
commit | 7c473eb7892c29fd43a6693b3e44de824532209b (patch) | |
tree | 91d5adcbeb370088bded344995c219461a66c84a | |
parent | cbe115061aed6bcb5ea27b438059cddbd37ec441 (diff) |
Enable loplugin:defaultparams
Change-Id: Ie0a17569d1216816fd6357cd2ba1e125d2172408
-rw-r--r-- | compilerplugins/clang/defaultparams.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/defaultparams.cxx b/compilerplugins/clang/defaultparams.cxx index fc63b3558242..f773a3111a73 100644 --- a/compilerplugins/clang/defaultparams.cxx +++ b/compilerplugins/clang/defaultparams.cxx @@ -81,7 +81,7 @@ bool DefaultParams::VisitCallExpr(CallExpr * callExpr) { return true; } -loplugin::Plugin::Registration< DefaultParams > X("defaultparams", false); +loplugin::Plugin::Registration< DefaultParams > X("defaultparams"); } |