summaryrefslogtreecommitdiff
path: root/basic/qa/cppunit
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-06-30 15:25:15 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-06-30 19:05:48 +0200
commitd902e04bafcf7436c4c05140e82e677cd6bc826f (patch)
tree0fe1f2f76d11d798711264d56d697ef1cb876bca /basic/qa/cppunit
parenteb582a59f8f4ba9bcb939fd4b134f29099d2539c (diff)
Upcoming improved loplugin:staticanonymous -> redundantstatic: basic
Change-Id: I1046ee1ea28e19afa51b0e20ee573105ced77535 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97522 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'basic/qa/cppunit')
-rw-r--r--basic/qa/cppunit/test_scanner.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basic/qa/cppunit/test_scanner.cxx b/basic/qa/cppunit/test_scanner.cxx
index 6f3d9d7ecae1..9b80c32512d6 100644
--- a/basic/qa/cppunit/test_scanner.cxx
+++ b/basic/qa/cppunit/test_scanner.cxx
@@ -67,12 +67,12 @@ namespace
CPPUNIT_TEST_SUITE_END();
};
- static const OUString cr = "\n";
- static const OUString rem = "REM";
- static const OUString asdf = "asdf";
- static const OUString dot = ".";
- static const OUString goto_ = "goto";
- static const OUString excl = "!";
+ const OUString cr = "\n";
+ const OUString rem = "REM";
+ const OUString asdf = "asdf";
+ const OUString dot = ".";
+ const OUString goto_ = "goto";
+ const OUString excl = "!";
std::vector<Symbol> getSymbols(const OUString& source, sal_Int32& errors, bool bCompatible = false)
{