1
0
mirror of synced 2024-11-12 10:10:53 +01:00

patterns: Fixed auto parameter crash

This commit is contained in:
WerWolv 2022-03-03 13:34:05 +01:00
parent 559b86efe1
commit 8b2dcf976f

View File

@ -41,7 +41,9 @@ namespace hex::pl {
bool referenceType = false;
if (type == nullptr) {
auto typePattern = type->createPatterns(this);
if (typePattern.empty()) {
// Handle auto variables
if (!value.has_value())
LogConsole::abortEvaluation("cannot determine type of auto variable", type);
@ -64,7 +66,7 @@ namespace hex::pl {
} else
LogConsole::abortEvaluation("cannot determine type of auto variable", type);
} else {
pattern = std::move(type->createPatterns(this).front());
pattern = std::move(typePattern.front());
}
pattern->setVariableName(name);