summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/tools/debug.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/tools/debug.hxx b/include/tools/debug.hxx
index 3dfafab4b860..e8a128adcf33 100644
--- a/include/tools/debug.hxx
+++ b/include/tools/debug.hxx
@@ -32,8 +32,7 @@
Because the assertion macro (DBG_ASSERT) has been used for
true assertions as well as to log warnings, it maps to SAL_WARN instead of
- standard assert. The warning and error macros (DBG_ASSERTWARNING,
- DBG_WARNING) all map to
+ standard assert. The warning and error macros (DBG_ASSERTWARNING) all map to
SAL_INFO.
*/
@@ -71,9 +70,6 @@ do \
#define DBG_ASSERT( sCon, aError ) \
SAL_DETAIL_WARN_IF_FORMAT(!(sCon), "legacy.tools", "%s", aError)
-#define DBG_WARNING( aWarning ) \
- SAL_DETAIL_INFO_IF_FORMAT(true, "legacy.tools", "%s", aWarning)
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */