New loplugin:charrightshift
Change-Id: Ib645fb11004bc0fe05c9c416ae72b0ae56c23a15
This commit is contained in:
@@ -216,7 +216,7 @@ namespace URLEncoder
|
||||
result += c;
|
||||
else {
|
||||
result += '%';
|
||||
result += hex[c >> 4];
|
||||
result += hex[static_cast<unsigned char>(c) >> 4];
|
||||
result += hex[c & 0xf];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user