forked from OSchip/llvm-project
[clangd] Remove dead variable. NFC
This commit is contained in:
parent
0c3c8f4ae6
commit
85fc5bf341
|
@ -111,7 +111,6 @@ bool shouldEscape(unsigned char C) {
|
||||||
/// - Reserved characters always escaped with exceptions like '/'.
|
/// - Reserved characters always escaped with exceptions like '/'.
|
||||||
/// - All other characters are escaped.
|
/// - All other characters are escaped.
|
||||||
void percentEncode(llvm::StringRef Content, std::string &Out) {
|
void percentEncode(llvm::StringRef Content, std::string &Out) {
|
||||||
std::string Result;
|
|
||||||
for (unsigned char C : Content)
|
for (unsigned char C : Content)
|
||||||
if (shouldEscape(C)) {
|
if (shouldEscape(C)) {
|
||||||
Out.push_back('%');
|
Out.push_back('%');
|
||||||
|
|
Loading…
Reference in New Issue