From d902e04bafcf7436c4c05140e82e677cd6bc826f Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 30 Jun 2020 15:25:15 +0200 Subject: 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 --- basic/qa/cppunit/test_scanner.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'basic/qa/cppunit') 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 getSymbols(const OUString& source, sal_Int32& errors, bool bCompatible = false) { -- cgit