summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-04-19 10:35:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-04-19 10:35:24 +0100
commitd33d12bae73f12e7f0bc5e6a9974804c8012c3c6 (patch)
tree584fc6fbc41872fbf3edd3c9d0749c2b0cf8e304 /comphelper
parent26c8682631d81151d1d81922a5aafde98081bfb6 (diff)
WaE: simplify this
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/inc/comphelper/sequence.hxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/comphelper/inc/comphelper/sequence.hxx b/comphelper/inc/comphelper/sequence.hxx
index 9ccb89770ca4..125668172fb1 100644
--- a/comphelper/inc/comphelper/sequence.hxx
+++ b/comphelper/inc/comphelper/sequence.hxx
@@ -179,13 +179,9 @@ namespace comphelper
,m_pCurrent(NULL)
{
::com::sun::star::uno::Sequence< TYPE > aContainer;
- #ifdef DBG_UTIL
- sal_Bool bSuccess =
- #endif
- _rSequenceAny >>= aContainer;
- #ifdef DBG_UTIL
+ sal_Bool bSuccess = _rSequenceAny >>= aContainer;
OSL_ENSURE(bSuccess, "OSequenceIterator::OSequenceIterator: invalid Any!");
- #endif
+ (void)bSuccess;
construct(aContainer);
}