From 4583911575edf98ccd5b15af8eafa6a3a7b64034 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 21 Jun 2019 12:14:08 +0200 Subject: improve loplugin:simplifyconstruct Change-Id: If863d28c6db470faa0d22273020888d4219e069e Reviewed-on: https://gerrit.libreoffice.org/74559 Tested-by: Jenkins Reviewed-by: Noel Grandin --- ucbhelper/source/provider/propertyvalueset.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ucbhelper/source') diff --git a/ucbhelper/source/provider/propertyvalueset.cxx b/ucbhelper/source/provider/propertyvalueset.cxx index bf1e019a7fef..b420de754008 100644 --- a/ucbhelper/source/provider/propertyvalueset.cxx +++ b/ucbhelper/source/provider/propertyvalueset.cxx @@ -137,7 +137,7 @@ class PropertyValues : public std::vector< ucbhelper_impl::PropertyValue > {}; \ osl::MutexGuard aGuard( m_aMutex ); \ \ - _type_ aValue = _type_(); /* default ctor */ \ + _type_ aValue {}; /* default ctor */ \ \ m_bWasNull = true; \ \ -- cgit