1
0
réplica de https://github.com/quitesimpleorg/qsmaddy.git sincronizado 2025-12-14 10:29:27 +01:00

make sure that all parsers are finished

Este cometimento está contido em:
M. Petra Baranski
2018-01-18 19:09:10 +01:00
ascendente 7963d90603
cometimento 9a9774f904
2 ficheiros modificados com 13 adições e 1 eliminações

Ver ficheiro

@@ -93,6 +93,18 @@ public:
}
}
// make sure, that all parsers are finished
if (currentBlockParser)
{
std::string emptyLine = "";
currentBlockParser->AddLine(emptyLine);
if (currentBlockParser->IsFinished())
{
result += currentBlockParser->GetResult().str();
currentBlockParser = nullptr;
}
}
return result;
}