diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2000-12-21 13:39:29 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2000-12-21 13:39:29 +0000 |
commit | 61193f586ba392e6da6955800945ec9da6830991 (patch) | |
tree | aafc6547d85683cd942b642987f5d9eb6187e744 /cppu/source/uno/any.cxx | |
parent | 8c3c9f8b9121f0be8d18e40b1e1548d207e1c47f (diff) |
empty throw () clauses
Diffstat (limited to 'cppu/source/uno/any.cxx')
-rw-r--r-- | cppu/source/uno/any.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cppu/source/uno/any.cxx b/cppu/source/uno/any.cxx index 46897298fa4f..5970075b5ca4 100644 --- a/cppu/source/uno/any.cxx +++ b/cppu/source/uno/any.cxx @@ -2,9 +2,9 @@ * * $RCSfile: any.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: dbo $ $Date: 2000-12-08 12:19:45 $ + * last change: $Author: dbo $ $Date: 2000-12-21 14:39:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -72,6 +72,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_assign( uno_Any * pDest, void * pSource, typelib_TypeDescriptionReference * pType, uno_AcquireFunc acquire, uno_ReleaseFunc release ) + throw () { __destructAny( pDest, release ); if (pType) @@ -88,6 +89,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_assign( uno_Any * pDest, void * pSource, typelib_TypeDescription * pTypeDescr, uno_AcquireFunc acquire, uno_ReleaseFunc release ) + throw () { __destructAny( pDest, release ); if (pTypeDescr) @@ -104,6 +106,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_construct( uno_Any * pDest, void * pSource, typelib_TypeDescriptionReference * pType, uno_AcquireFunc acquire ) + throw () { if (pType) { @@ -119,6 +122,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_construct( uno_Any * pDest, void * pSource, typelib_TypeDescription * pTypeDescr, uno_AcquireFunc acquire ) + throw () { if (pTypeDescr) { @@ -134,6 +138,7 @@ SAL_DLLEXPORT void SAL_CALL uno_type_any_constructAndConvert( uno_Any * pDest, void * pSource, typelib_TypeDescriptionReference * pType, uno_Mapping * mapping ) + throw () { if (pType) { @@ -149,6 +154,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_constructAndConvert( uno_Any * pDest, void * pSource, typelib_TypeDescription * pTypeDescr, uno_Mapping * mapping ) + throw () { if (pTypeDescr) { @@ -161,6 +167,7 @@ SAL_DLLEXPORT void SAL_CALL uno_any_constructAndConvert( } //################################################################################################## SAL_DLLEXPORT void SAL_CALL uno_any_destruct( uno_Any * pValue, uno_ReleaseFunc release ) + throw () { __destructAny( pValue, release ); } |