diff options
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/propertyvalueset.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ \ |