diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-30 14:06:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-30 14:06:04 +0200 |
commit | 9b39649fa1ce4d81658a6c9448cfdf76581813f0 (patch) | |
tree | 0c25ff370a7516169c89c762141c6412a651d5a2 /sal | |
parent | 5f4f6b3146eb56c757b36eda43dcaf63c690ffb9 (diff) |
loplugin:staticanonymous
cf. <https://gerrit.libreoffice.org/#/c/23630/> "tdf#97966 Compiler plugin"; in
code not covered by Tamás's pending "tdf#97966 Drop 'static' keywords" changes.
Change-Id: Ifbaef83fdb1fde7e25fafd5746cdbf99c334c5be
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/signal.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/signal.cxx b/sal/osl/unx/signal.cxx index 9f44d31d078b..7f864568a402 100644 --- a/sal/osl/unx/signal.cxx +++ b/sal/osl/unx/signal.cxx @@ -352,7 +352,7 @@ void callSystemHandler(int signal) } #if defined HAVE_VALGRIND_HEADERS -static void DUMPCURRENTALLOCS() +void DUMPCURRENTALLOCS() { VALGRIND_PRINTF( "=== start memcheck dump of active allocations ===\n" ); |