diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 08:50:35 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 10:06:47 +0200 |
commit | b32e5bbdc620ac9cf8b241ada47640f9e1d5d408 (patch) | |
tree | 330594abcfe3930c9ba3e995f72c0bc69684bb04 /testtools | |
parent | 47060fe411a33c4dc05540c4fb5b6aa26ae12c25 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: testtools
Change-Id: I14913564c7dbb453a761b5e37fec4f9eb331417d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97705
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/currentcontextchecker.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testtools/source/bridgetest/currentcontextchecker.cxx b/testtools/source/bridgetest/currentcontextchecker.cxx index 27de3c5e7d42..4fda634e91f1 100644 --- a/testtools/source/bridgetest/currentcontextchecker.cxx +++ b/testtools/source/bridgetest/currentcontextchecker.cxx @@ -38,8 +38,8 @@ namespace { -static char const KEY[] = "testtools.bridgetest.Key"; -static char const VALUE[] = "good"; +char const KEY[] = "testtools.bridgetest.Key"; +char const VALUE[] = "good"; class CurrentContext: public ::osl::DebugBase< CurrentContext >, |