1
0
mirror of synced 2025-01-19 01:24:15 +01:00

fix: Weird build error on GCC 12.1.0 again

This fixes #515
This commit is contained in:
WerWolv 2022-05-28 15:46:39 +02:00
parent 603a95debb
commit 39c743631b

View File

@ -42,6 +42,10 @@ namespace hex {
continue;
if (delimiterPos >= line.length())
continue;
if (delimiterPos >= from.length())
continue;
if (delimiterPos >= to.length())
continue;
from = line.substr(0, delimiterPos);
to = line.substr(delimiterPos + 1);