diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-08-04 15:42:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-08-04 20:20:41 +0200 |
commit | 924341e2c73e28b92fb927f2a4b5494ded5f257a (patch) | |
tree | b3259d4d66ca2cdac17383475472b22c72b67624 /desktop | |
parent | 56223a535d9c1da3ebf36dac9ee09e62b6de242a (diff) |
Improved loplugin:staticanonymous -> redundantstatic redux, clang-cl
Change-Id: Ie6dc22edbcfdf05ab8d7d668cb7cc33b5b747995
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100100
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/minidump/minidump.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/minidump/minidump.cxx b/desktop/source/minidump/minidump.cxx index cdf7bf049ecb..5c245abde693 100644 --- a/desktop/source/minidump/minidump.cxx +++ b/desktop/source/minidump/minidump.cxx @@ -16,7 +16,7 @@ #include <curl/curl.h> -static const char kUserAgent[] = "Breakpad/1.0 (Linux)"; +const char kUserAgent[] = "Breakpad/1.0 (Linux)"; static std::map<std::string, std::string> readStrings(std::istream& file) { |