diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-08-14 11:45:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-08-14 13:29:39 +0200 |
commit | c38592527adfc526133c3ac36b10aa77234313ee (patch) | |
tree | 0000e8f83527d769899e7b84d104eb93e47b82fd /include/cppuhelper | |
parent | 86435f9e28f8e7936777cbd6e8598994e7c42428 (diff) |
EXCEPTIONS_OFF is never defined
...since gb_LinkTarget_NOEXCEPTIONFLAGS became unused with
e81b1f23c49e35c1cde1faa44281812e97be60f5 "remove
gb_LinkTarget_add_noexception_object."
Change-Id: I4a7275b5b26a9d4b6ded66efb52e6866e6e09cc3
Diffstat (limited to 'include/cppuhelper')
-rw-r--r-- | include/cppuhelper/interfacecontainer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/cppuhelper/interfacecontainer.h b/include/cppuhelper/interfacecontainer.h index 774f900a8b26..9a1cb4d76376 100644 --- a/include/cppuhelper/interfacecontainer.h +++ b/include/cppuhelper/interfacecontainer.h @@ -269,9 +269,6 @@ inline void OInterfaceContainerHelper::forEach( FuncT const& func ) ::com::sun::star::uno::Reference<ListenerT> const xListener( iter.next(), ::com::sun::star::uno::UNO_QUERY ); if (xListener.is()) { -#if defined(EXCEPTIONS_OFF) - func( xListener ); -#else try { func( xListener ); } @@ -279,7 +276,6 @@ inline void OInterfaceContainerHelper::forEach( FuncT const& func ) if (exc.Context == xListener) iter.remove(); } -#endif } } } |