From d79323c6ca38a9f32791254165d9689ef8f873df Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 3 May 2022 17:45:39 +0200 Subject: [PATCH] small fix for generic factory header --- mission/core/GenericFactory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mission/core/GenericFactory.h b/mission/core/GenericFactory.h index cabbbb91..4bc6695d 100644 --- a/mission/core/GenericFactory.h +++ b/mission/core/GenericFactory.h @@ -5,7 +5,7 @@ class HealthTableIF; namespace ObjectFactory { -void produceGenericObjects(HealthTableIF** healthTable); +void produceGenericObjects(HealthTableIF** healthTable = nullptr); }