diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-05-14 17:10:40 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-05-14 20:08:57 +0200 |
commit | 40c81b6a3dbceca8bc93ff6aa42118921d274e19 (patch) | |
tree | 6376a53710f2bd60a54b664758244ea332bc5a90 /include/tools | |
parent | a446d76ca4e07cc0255bdd764f381fa7db214475 (diff) |
remove duplicate define
Change-Id: I005fee0d142315a5304ae64c80a898b070a37088
Reviewed-on: https://gerrit.libreoffice.org/37601
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/diagnose_ex.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/tools/diagnose_ex.h b/include/tools/diagnose_ex.h index 921b45648904..df71bfa01711 100644 --- a/include/tools/diagnose_ex.h +++ b/include/tools/diagnose_ex.h @@ -110,18 +110,6 @@ TOOLS_DLLPUBLIC void DbgUnhandledException(const css::uno::Any& caughtException, return; \ } - - -/** This macro asserts the given condition (in debug mode), and - returns afterwards, without return value "void". - */ -#define ENSURE_OR_RETURN_VOID( c, m ) \ - if( !(c) ) \ - { \ - OSL_ENSURE( c, m ); \ - return; \ - } - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |