diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
commit | e50ef195bc95f3f410119f623928382cb88b45d2 (patch) | |
tree | 0897c005806c84d7e2add9f4a2d407ff4fe911a5 /svl | |
parent | 363e39d63621b6c7017854ca5bb2f7668bb35846 (diff) |
New loplugin:stringconcat
Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/whassert.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/whassert.hxx b/svl/source/items/whassert.hxx index 7c7368869e0b..253debbf0e87 100644 --- a/svl/source/items/whassert.hxx +++ b/svl/source/items/whassert.hxx @@ -24,7 +24,7 @@ #include <sal/log.hxx> #define SFX_ASSERT( bCondition, nId, sMessage ) SAL_WARN_IF( \ - !(bCondition), "svl", (sMessage) << ", with ID/pos " << (nId)); + !(bCondition), "svl", sMessage ", with ID/pos " << (nId)); #endif |