diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-07-05 11:12:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-07-06 09:28:33 +0200 |
commit | ad0e7d5734b3b759b1ef4aa794e2a31d79a2ecd1 (patch) | |
tree | 7fc31ea885e4d68657f1621ac552496e1cadb688 /sw/inc | |
parent | 12a3f5cefeaeb842507dd8038597fb77ca929dd1 (diff) |
silence coverity#1414485 Uninitialized pointer field
Change-Id: If62f528b1118aee702f364aa448e36230512fac6
Reviewed-on: https://gerrit.libreoffice.org/39572
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/bparr.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sw/inc/bparr.hxx b/sw/inc/bparr.hxx index 90f00231fa3d..04b77eb16dee 100644 --- a/sw/inc/bparr.hxx +++ b/sw/inc/bparr.hxx @@ -54,14 +54,11 @@ public: struct BlockInfo final { - BigPtrArray* const - pBigArr; ///< in this array the block is located + BigPtrArray* pBigArr; ///< in this array the block is located std::array<BigPtrEntry*, MAXENTRY> mvData; ///< data block sal_uLong nStart, nEnd; ///< start- and end index sal_uInt16 nElem; ///< number of elements - - BlockInfo(BigPtrArray* b) : pBigArr(b) {} }; class SW_DLLPUBLIC BigPtrArray |