diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-31 21:55:51 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-31 21:58:32 +0200 |
commit | 0f618909d348f6ff26a34367b0d57b21c1b85a01 (patch) | |
tree | 1ab1cb96adf72e457c910d0c61e6bf0e46814d59 /sw | |
parent | 134028c6160de7d2c05f0ff67d71cbdb4bff4737 (diff) |
SwpHintsArray::DeleteAtPos: Apple GCC unused variable warning
Change-Id: Idc56569da52554a5478fc23548b8d3395648a2bf
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/txtnode/ndhints.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/core/txtnode/ndhints.cxx b/sw/source/core/txtnode/ndhints.cxx index 29efd9fd6246..af2a032ea807 100644 --- a/sw/source/core/txtnode/ndhints.cxx +++ b/sw/source/core/txtnode/ndhints.cxx @@ -148,6 +148,7 @@ void SwpHintsArray::DeleteAtPos( const sal_uInt16 nPos ) bool const done = m_HintEnds.erase(pHt); assert(done); + (void) done; // unused in NDEBUG } sal_uInt16 SwpHintsArray::GetPos( const SwTxtAttr *pHt ) const |