[Libreoffice-commits] core.git: comphelper/source

Stephan Bergmann sbergman at redhat.com
Thu Oct 20 11:24:38 UTC 2016


 comphelper/source/misc/backupfilehelper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4fb9926ebc91082fe0c29a42239a60bc7a1581fd
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Oct 20 13:23:20 2016 +0200

    Blind fix for "error: chosen constructor is explicit in copy-initialization"
    
    ...on linux_clang_dbgutil_64 build
    
    Change-Id: I00022749ce12df459ce22333593daa2eb6503fd7

diff --git a/comphelper/source/misc/backupfilehelper.cxx b/comphelper/source/misc/backupfilehelper.cxx
index 9f11db4..50b9cac 100644
--- a/comphelper/source/misc/backupfilehelper.cxx
+++ b/comphelper/source/misc/backupfilehelper.cxx
@@ -1990,7 +1990,7 @@ namespace comphelper
         // but as we are now in SafeMode, use XML infos for this since the
         // extensions are not loaded from XExtensionManager
         ExtensionInfo aCurrentExtensionInfo;
-        const ExtensionInfoEntryVector aToBeEnabled = { };
+        const ExtensionInfoEntryVector aToBeEnabled{};
         ExtensionInfoEntryVector aToBeDisabled;
 
         aCurrentExtensionInfo.createUsingExtensionRegistryEntriesFromXML(maUserConfigWorkURL);


More information about the Libreoffice-commits mailing list