diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-08-21 09:39:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-08-21 11:05:28 +0200 |
commit | 13ae66c0eb0ab03ac4a43c52dd2359fbaa7f5867 (patch) | |
tree | 48240e6ac377af8dfc4abde33d5b1c3ae1743127 /sal | |
parent | 414b93285f081cd1a0bfb0847fbd3943bf50093a (diff) |
loplugin:stringstatic (clang-cl)
Change-Id: I024c7437e876459e22a6f541405b87ac13e7dc99
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101135
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/path_helper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/w32/path_helper.cxx b/sal/osl/w32/path_helper.cxx index 9538254659dd..eeb45ce885be 100644 --- a/sal/osl/w32/path_helper.cxx +++ b/sal/osl/w32/path_helper.cxx @@ -25,8 +25,8 @@ #include <algorithm> #include <wchar.h> -const OUString BACKSLASH ("\\"); -const OUString SLASH ("/"); +const OUStringLiteral BACKSLASH ("\\"); +const OUStringLiteral SLASH ("/"); void osl_systemPathEnsureSeparator(/*inout*/ rtl_uString** ppustrPath) { |