fix: Weird indentation

This commit is contained in:
WerWolv 2023-10-22 23:06:35 +02:00
parent 9fdd4670b7
commit 215e1ffdc8
1 changed files with 2 additions and 2 deletions

View File

@ -740,7 +740,7 @@ namespace hex::plugin::builtin {
value = wolv::util::trim(value); value = wolv::util::trim(value);
return BinaryPattern(value); return BinaryPattern(value);
}(); }();
const auto address = [value = value] mutable -> std::optional<u64> { const auto address = [value = value] mutable -> std::optional<u64> {
value = wolv::util::trim(value); value = wolv::util::trim(value);
@ -761,7 +761,7 @@ namespace hex::plugin::builtin {
return std::nullopt; return std::nullopt;
return result; return result;
}(); }();
if (!address) if (!address)
return false; return false;