summaryrefslogtreecommitdiff
path: root/include/com/sun/star/uno/genfunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/com/sun/star/uno/genfunc.h')
-rw-r--r--include/com/sun/star/uno/genfunc.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/com/sun/star/uno/genfunc.h b/include/com/sun/star/uno/genfunc.h
index a2f5390136ff..d1603e250bef 100644
--- a/include/com/sun/star/uno/genfunc.h
+++ b/include/com/sun/star/uno/genfunc.h
@@ -36,22 +36,19 @@ namespace uno
@param pCppI C++ interface pointer
*/
-inline void SAL_CALL cpp_acquire( void * pCppI )
- SAL_THROW(());
+inline void SAL_CALL cpp_acquire( void * pCppI );
/** Function to release a C++ interface.
@param pCppI C++ interface pointer
*/
-inline void SAL_CALL cpp_release( void * pCppI )
- SAL_THROW(());
+inline void SAL_CALL cpp_release( void * pCppI );
/** Function to query for a C++ interface.
@param pCppI C++ interface pointer
@param pType demanded interface type
@return acquired C++ interface pointer or null
*/
-inline void * SAL_CALL cpp_queryInterface( void * pCppI, typelib_TypeDescriptionReference * pType )
- SAL_THROW(());
+inline void * SAL_CALL cpp_queryInterface( void * pCppI, typelib_TypeDescriptionReference * pType );
}
}