Kaydet (Commit) 599b3c91 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

accidentally used a c++11 only construct

Change-Id: I3c89cdf3c3ea6214f4313afde70677f0752dc66b
üst 21e90f90
...@@ -65,7 +65,7 @@ ODbaseIndex::ODbaseIndex(ODbaseTable* _pTable) ...@@ -65,7 +65,7 @@ ODbaseIndex::ODbaseIndex(ODbaseTable* _pTable)
, m_pTable(_pTable) , m_pTable(_pTable)
, m_bUseCollector(sal_False) , m_bUseCollector(sal_False)
{ {
m_aHeader = {}; memset(&m_aHeader, 0, sizeof(m_aHeader));
construct(); construct();
} }
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment