diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-04 13:41:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-04 14:01:19 +0200 |
commit | 1fd781e7cd33f325ec7e467ecd49e0cb6ff4762b (patch) | |
tree | 9ede2ca7b2f7336365f675d9388dafc2a1994be6 /compilerplugins/clang | |
parent | a4c17041271eca2181cf11e5a0b59f4001c20cee (diff) |
loplugin:unuseddefaultparam in oox/reportdesign/sd
Change-Id: Ia26cf182ddc7c903d86bf74a8175858adb88121c
Diffstat (limited to 'compilerplugins/clang')
-rw-r--r-- | compilerplugins/clang/unuseddefaultparams.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/unuseddefaultparams.cxx b/compilerplugins/clang/unuseddefaultparams.cxx index 8074e519f4fd..e8b99d37e679 100644 --- a/compilerplugins/clang/unuseddefaultparams.cxx +++ b/compilerplugins/clang/unuseddefaultparams.cxx @@ -240,7 +240,7 @@ bool UnusedDefaultParams::VisitDeclRefExpr( const DeclRefExpr* declRefExpr ) return true; } -loplugin::Plugin::Registration< UnusedDefaultParams > X("unuseddefaultparams", true); +loplugin::Plugin::Registration< UnusedDefaultParams > X("unuseddefaultparams", false); } |