summaryrefslogtreecommitdiffstats
path: root/cppu/source/uno/destr.hxx
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:10:57 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:10:57 +0000
commitfee2a34fc7ce4301dd5335dd7c6072f5696480dd (patch)
tree8d9520635af5a7149d58b21bf75d0a38af80ee15 /cppu/source/uno/destr.hxx
parentredefined SAL_THROW, defined SAL_THROW_EXTERNC_C(), enum __sal_NoAcquire (diff)
downloadcore-fee2a34fc7ce4301dd5335dd7c6072f5696480dd.tar.gz
core-fee2a34fc7ce4301dd5335dd7c6072f5696480dd.zip
revised function throw () clauses
Diffstat (limited to 'cppu/source/uno/destr.hxx')
-rw-r--r--cppu/source/uno/destr.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/cppu/source/uno/destr.hxx b/cppu/source/uno/destr.hxx
index a6a27ab5d52b..5ae40624530b 100644
--- a/cppu/source/uno/destr.hxx
+++ b/cppu/source/uno/destr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: destr.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-02-28 15:36:21 $
+ * last change: $Author: dbo $ $Date: 2001-03-09 12:10:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -77,7 +77,7 @@ inline void __destructUnion(
void * pValue,
typelib_TypeDescription * pTypeDescr,
uno_ReleaseFunc release )
- throw ()
+ SAL_THROW( () )
{
typelib_TypeDescriptionReference * pType = __unionGetSetType( pValue, pTypeDescr );
::uno_type_destructData(
@@ -90,13 +90,13 @@ void destructStruct(
void * pValue,
typelib_CompoundTypeDescription * pTypeDescr,
uno_ReleaseFunc release )
- throw ();
+ SAL_THROW( () );
//--------------------------------------------------------------------------------------------------
inline void __destructStruct(
void * pValue,
typelib_CompoundTypeDescription * pTypeDescr,
uno_ReleaseFunc release )
- throw ()
+ SAL_THROW( () )
{
if (pTypeDescr->pBaseTypeDescription)
{
@@ -117,12 +117,12 @@ void destructSequence(
uno_Sequence ** ppSequence,
typelib_TypeDescriptionReference * pElementType,
uno_ReleaseFunc release )
- throw ();
+ SAL_THROW( () );
//--------------------------------------------------------------------------------------------------
inline void __destructAny(
uno_Any * pAny,
uno_ReleaseFunc release )
- throw ()
+ SAL_THROW( () )
{
typelib_TypeDescriptionReference * pType = pAny->pType;
@@ -190,7 +190,7 @@ inline sal_Int32 __destructElements(
void * pElements, typelib_TypeDescriptionReference * pElementType,
sal_Int32 nStartIndex, sal_Int32 nStopIndex,
uno_ReleaseFunc release )
- throw ()
+ SAL_THROW( () )
{
switch (pElementType->eTypeClass)
{
@@ -332,7 +332,7 @@ inline void __destructSequence(
typelib_TypeDescriptionReference * pType,
typelib_TypeDescription * pTypeDescr,
uno_ReleaseFunc release )
- throw ()
+ SAL_THROW( () )
{
if (! ::osl_decrementInterlockedCount( &pSequence->nRefCount ))
{
@@ -362,7 +362,7 @@ inline void __destructData(
typelib_TypeDescriptionReference * pType,
typelib_TypeDescription * pTypeDescr,
uno_ReleaseFunc release )
- throw ()
+ SAL_THROW( () )
{
switch (pType->eTypeClass)
{