Fix initialisation

This commit is contained in:
JohnnyMorganz 2023-04-14 18:17:44 +01:00
parent e399794562
commit 48de367399

View file

@ -758,10 +758,10 @@ AstTypeReference::AstTypeReference(const Location& location, std::optional<AstNa
: AstType(ClassIndex(), location)
, hasParameterList(hasParameterList)
, prefix(prefix)
, name(name)
, parameters(parameters)
, prefixLocation(prefixLocation)
, name(name)
, nameLocation(nameLocation)
, parameters(parameters)
{
}