Fix crash when moving around certain views

This commit is contained in:
WerWolv
2020-11-11 10:47:02 +01:00
parent 9b6b43356b
commit 9e62685fd1
9 changed files with 38 additions and 32 deletions

View File

@@ -23,7 +23,7 @@ namespace hex::lang {
std::optional<u64> parseInt(std::string_view string) {
u64 integer = 0;
u8 base = 10;
u8 base;
std::string_view numberData;