summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--icespider/core/xwwwFormUrlEncoded.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/icespider/core/xwwwFormUrlEncoded.cpp b/icespider/core/xwwwFormUrlEncoded.cpp
index 42bbddd..0414cf7 100644
--- a/icespider/core/xwwwFormUrlEncoded.cpp
+++ b/icespider/core/xwwwFormUrlEncoded.cpp
@@ -99,9 +99,9 @@ constexpr HexIn hexin = []() {
size_t firstHex = std::min({'0', 'a', 'A'});
size_t lastHex = std::max({'9', 'f', 'F'});
for (auto first = firstHex; first <= lastHex; first++) {
- if (const auto ch1 = hextable[first]) {
+ if (const auto & ch1 = hextable[first]) {
for (auto second = firstHex; second <= lastHex; second++) {
- if (const auto ch2 = hextable[second]) {
+ if (const auto & ch2 = hextable[second]) {
hexin[first][second] = static_cast<char>((*ch1 << 4U) + *ch2);
}
}