mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-30 05:05:19 -05:00
fix: Pattern filter RValue parsing
This commit is contained in:
@@ -167,11 +167,9 @@ namespace hex::plugin::builtin::ui {
|
||||
else if (c == '[') {
|
||||
result.emplace_back();
|
||||
result.back() += c;
|
||||
} else if (c == ']') {
|
||||
result.back() += c;
|
||||
result.emplace_back();
|
||||
} else
|
||||
} else {
|
||||
result.back() += c;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user