[Libreoffice-commits] core.git: connectivity/source
Norbert Thiebaud
nthiebaud at gmail.com
Sat Feb 1 15:38:52 PST 2014
connectivity/source/drivers/dbase/DIndex.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 599b3c91dc5bd9c04e70b38246acac9914a6b219
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date: Sat Feb 1 17:38:17 2014 -0600
accidentally used a c++11 only construct
Change-Id: I3c89cdf3c3ea6214f4313afde70677f0752dc66b
diff --git a/connectivity/source/drivers/dbase/DIndex.cxx b/connectivity/source/drivers/dbase/DIndex.cxx
index 07d735e..73bf4f4 100644
--- a/connectivity/source/drivers/dbase/DIndex.cxx
+++ b/connectivity/source/drivers/dbase/DIndex.cxx
@@ -65,7 +65,7 @@ ODbaseIndex::ODbaseIndex(ODbaseTable* _pTable)
, m_pTable(_pTable)
, m_bUseCollector(sal_False)
{
- m_aHeader = {};
+ memset(&m_aHeader, 0, sizeof(m_aHeader));
construct();
}
// -------------------------------------------------------------------------
More information about the Libreoffice-commits
mailing list