diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-18 09:43:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-18 16:02:25 +0200 |
commit | 65ae6af9f460b1a28f3e07480347ff7f90adae38 (patch) | |
tree | 49bfeb1e25724d3b5539b7b5843d38b7531cf65f /tools/source | |
parent | c7d1bb119d88faaafb53d65ad8907ede97d89c8c (diff) |
loplugin:unusedvarsglobal
tackle some read-only vars.
Mark some of them const to make it obvious they are not really used, and
to make the constantparam plugin see more data.
Change-Id: Ia25927745866746aa1aa9d5affd5857ad9f9ee24
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100895
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/inet/inetmime.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/source/inet/inetmime.cxx b/tools/source/inet/inetmime.cxx index d92a02790ee0..67783bb1cbe8 100644 --- a/tools/source/inet/inetmime.cxx +++ b/tools/source/inet/inetmime.cxx @@ -1103,7 +1103,6 @@ OUString INetMIME::decodeHeaderFieldBody(const OString& rBody) for (const char * p = pBegin; p != pEnd;) { - OUString sEncodedText; if (*p == '=' /* && bStartEncodedWord */) { const char * q = p + 1; @@ -1362,9 +1361,6 @@ OUString INetMIME::decodeHeaderFieldBody(const OString& rBody) } } - if (!sEncodedText.isEmpty()) - sDecoded.append(sEncodedText); - if (p == pEnd) break; |