summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-07 08:35:12 +0200
committerNoel Grandin <noel@peralex.com>2015-08-11 08:25:33 +0200
commit9d307abeec2a80e59af0f0af10dc42d90cd7441a (patch)
treeab939f6c7d0d65d0419fbe305bbc1501f1faceb8 /codemaker
parent12fb9096f562281c7ca4b7fed6a3342dac9a91b7 (diff)
new loplugin: defaultparams
find places where we do not need to be passing a parameter to a function, because that function has a default value which matches the value we are passing. Change-Id: I04d1fd6275204dd4925e6563282464f461123632
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/cppumaker/dependencies.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/codemaker/source/cppumaker/dependencies.cxx b/codemaker/source/cppumaker/dependencies.cxx
index b56bacfd4b1f..ebcd839d579f 100644
--- a/codemaker/source/cppumaker/dependencies.cxx
+++ b/codemaker/source/cppumaker/dependencies.cxx
@@ -301,7 +301,7 @@ void Dependencies::insert(OUString const & name, bool base) {
for (std::vector< OString >::iterator i(args.begin()); i != args.end();
++i)
{
- insert(b2u(*i), false);
+ insert(b2u(*i));
}
// fall through
case UnoType::SORT_SEQUENCE_TYPE: