Kaydet (Commit) 5cfea7f8 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Make default zero-initialization explicit

...to match style used for other data members.
üst c65ae876
...@@ -478,7 +478,7 @@ struct FileMapping ...@@ -478,7 +478,7 @@ struct FileMapping
sal_uInt32 m_nSize; sal_uInt32 m_nSize;
oslFileHandle m_hFile; oslFileHandle m_hFile;
FileMapping() : m_pAddr(0), m_nSize(0), m_hFile() {} FileMapping() : m_pAddr(0), m_nSize(0), m_hFile(0) {}
bool operator != (FileMapping const & rhs) const bool operator != (FileMapping const & rhs) const
{ {
......
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