diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-04-14 10:48:10 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-04-14 10:48:10 +0000 |
commit | 8a83bcaa5772752f4c1ca89014a8bf6d12cca784 (patch) | |
tree | d1467c6161db77452752cfa6a2c0a02375e3c070 /sal | |
parent | 971047d51ba9ee21c3f8c9a57572277df6a2fd7d (diff) |
INTEGRATION: CWS unopkg1 (1.6.228); FILE MERGED
2004/03/12 13:25:55 dbo 1.6.228.1: #i22343# throwing ::std::bad_alloc in case of memory exhaustion
Diffstat (limited to 'sal')
-rw-r--r-- | sal/inc/rtl/byteseq.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sal/inc/rtl/byteseq.h b/sal/inc/rtl/byteseq.h index 91c74d534d5a..63165e8d566b 100644 --- a/sal/inc/rtl/byteseq.h +++ b/sal/inc/rtl/byteseq.h @@ -2,9 +2,9 @@ * * $RCSfile: byteseq.h,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: dbo $ $Date: 2001-11-08 16:15:10 $ + * last change: $Author: hr $ $Date: 2004-04-14 11:48:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -240,19 +240,19 @@ public: @param pElements an array of bytes @param len number of bytes */ - inline ByteSequence( const sal_Int8 * pElements, sal_Int32 len ) SAL_THROW( () ); + inline ByteSequence( const sal_Int8 * pElements, sal_Int32 len ); /** Constructor: Creates sequence of given length and initializes all bytes to 0. @param len initial sequence length */ - inline ByteSequence( sal_Int32 len ) SAL_THROW( () ); + inline ByteSequence( sal_Int32 len ); /** Constructor: Creates sequence of given length and does NOT initialize data. Use this ctor for performance optimization only. @param len initial sequence length @param nodefault dummy parameter forcing explicit BYTESEQ_NODEFAULT */ - inline ByteSequence( sal_Int32 len , enum __ByteSequence_NoDefault nodefault ) SAL_THROW( () ); + inline ByteSequence( sal_Int32 len , enum __ByteSequence_NoDefault nodefault ); /** Constructor: Creates a sequence from a C-Handle without acquiring the handle, thus taking over owenership. Eitherway the handle is release by the destructor. @@ -295,7 +295,7 @@ public: @return pointer to elements array */ - inline sal_Int8 * SAL_CALL getArray() SAL_THROW( () ); + inline sal_Int8 * SAL_CALL getArray(); /** Non-const index operator: Obtains a reference to byte indexed at given position. @@ -309,7 +309,7 @@ public: @param nIndex index @return non-const C++ reference to element at index nIndex */ - inline sal_Int8 & SAL_CALL operator [] ( sal_Int32 nIndex ) SAL_THROW( () ); + inline sal_Int8 & SAL_CALL operator [] ( sal_Int32 nIndex ); /** Const index operator: Obtains a reference to byte indexed at given position. The implementation does NOT check for array bounds! @@ -339,7 +339,7 @@ public: @param nSize new size of sequence */ - inline void SAL_CALL realloc( sal_Int32 nSize ) SAL_THROW( () ); + inline void SAL_CALL realloc( sal_Int32 nSize ); /** Returns the UNnacquired C handle of the sequence |