Fix warning about possibly unused value

This commit is contained in:
Martchus 2022-05-12 20:33:23 +02:00
parent ce0f34a0fd
commit 4c98887b02
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ std::string Url::decodeValue(std::string_view value)
SecondDigit,
} state
= AnyChar;
boost::beast::string_view::value_type encodedValue;
auto encodedValue = boost::beast::string_view::value_type();
try {
for (const auto c : value) {
switch (state) {