summaryrefslogtreecommitdiffstats
path: root/cppu
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-10-16 07:33:46 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-10-16 07:33:46 +0000
commit61b160cefcf2a48e36298dfe42112ed8424291b7 (patch)
treee2c7c0fe01bcf9fbe3bc9400622c962091709376 /cppu
parent#76791# documentation added (diff)
downloadcore-61b160cefcf2a48e36298dfe42112ed8424291b7.tar.gz
core-61b160cefcf2a48e36298dfe42112ed8424291b7.zip
#92255# removed unnecessary ctor/ dtor template arg
Diffstat (limited to 'cppu')
-rw-r--r--cppu/inc/com/sun/star/uno/Sequence.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cppu/inc/com/sun/star/uno/Sequence.h b/cppu/inc/com/sun/star/uno/Sequence.h
index b7ae71164d40..79f018175b79 100644
--- a/cppu/inc/com/sun/star/uno/Sequence.h
+++ b/cppu/inc/com/sun/star/uno/Sequence.h
@@ -2,9 +2,9 @@
*
* $RCSfile: Sequence.h,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: dbo $ $Date: 2001-08-21 09:17:07 $
+ * last change: $Author: dbo $ $Date: 2001-10-16 08:33:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -126,32 +126,32 @@ public:
/** Default constructor: Creates an empty sequence.
*/
- inline Sequence< E >() SAL_THROW( () );
+ inline Sequence() SAL_THROW( () );
/** Copy constructor: Creates a copy of given sequence.
@param rSeq another sequence of same type
*/
- inline Sequence< E >( const Sequence< E > & rSeq ) SAL_THROW( () );
+ inline Sequence( const Sequence< E > & rSeq ) SAL_THROW( () );
/** Constructor: Takes over ownership of given sequence.
@param pSequence a sequence
@param dummy SAL_NO_ACQUIRE to force obvious distinction to other constructors
*/
- inline Sequence< E >( uno_Sequence * pSequence, __sal_NoAcquire ) SAL_THROW( () );
+ inline Sequence( uno_Sequence * pSequence, __sal_NoAcquire ) SAL_THROW( () );
/** Constructor: Creates a copy of given elements.
@param pElement an array of elements
@param len length of array
*/
- inline Sequence< E >( const E * pElements, sal_Int32 len ) SAL_THROW( () );
+ inline Sequence( const E * pElements, sal_Int32 len ) SAL_THROW( () );
/** Constructor: Creates a default constructed sequence of given length.
@param len initial sequence length
*/
- inline Sequence< E >( sal_Int32 len ) SAL_THROW( () );
+ inline Sequence( sal_Int32 len ) SAL_THROW( () );
/** Destructor: Releases sequence handle. Last handle will destruct elements and free memory.
*/
- inline ~Sequence< E >() SAL_THROW( () );
+ inline ~Sequence() SAL_THROW( () );
/** Assignment operator: Acquires given sequence handle and releases previously set handle.