summaryrefslogtreecommitdiff
path: root/cppu/source/uno/sequence.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:15:28 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:15:28 +0000
commitcef961180073602b83d750b6329e37b8d3496b47 (patch)
treea328d200f722af9d13f81e200c9647fc01c72d9c /cppu/source/uno/sequence.cxx
parent9f570f7d9a9ad2a6e132a4d83b51773486ea3bd4 (diff)
INTEGRATION: CWS warnings01 (1.17.4); FILE MERGED
2005/11/08 16:03:57 pl 1.17.4.1: #i53898# sal_Size is unsigned
Diffstat (limited to 'cppu/source/uno/sequence.cxx')
-rw-r--r--cppu/source/uno/sequence.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppu/source/uno/sequence.cxx b/cppu/source/uno/sequence.cxx
index 29950515e68d..8f0c4e56c911 100644
--- a/cppu/source/uno/sequence.cxx
+++ b/cppu/source/uno/sequence.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sequence.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 08:54:43 $
+ * last change: $Author: hr $ $Date: 2006-06-19 13:15:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -73,7 +73,7 @@ namespace cppu
static inline uno_Sequence * reallocSeq(
uno_Sequence * pReallocate, sal_Size nElementSize, sal_Int32 nElements )
{
- OSL_ASSERT( nElementSize >= 0 && nElements >= 0 );
+ OSL_ASSERT( nElements >= 0 );
uno_Sequence * pNew = 0;
sal_uInt32 nSize = calcSeqMemSize( nElementSize, nElements );
if (nSize > 0)