diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-03-23 17:37:33 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-03-23 17:37:33 +0100 |
commit | 5cfea7f88532a8f2e3ae069ebd9258825f20df0b (patch) | |
tree | af9808c34ac1fee86a9b044fd6a046c587ac4c48 /store | |
parent | c65ae8762b5ce302d07bfa7f5432fd3560133dc2 (diff) |
Make default zero-initialization explicit
...to match style used for other data members.
Diffstat (limited to 'store')
-rw-r--r-- | store/source/lockbyte.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/store/source/lockbyte.cxx b/store/source/lockbyte.cxx index 1a8bf81efd9e..7c02c22b0e01 100644 --- a/store/source/lockbyte.cxx +++ b/store/source/lockbyte.cxx @@ -478,7 +478,7 @@ struct FileMapping sal_uInt32 m_nSize; 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 { |