From a12e588079700d55a0b788fea2df7727c2e41f52 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 27 Mar 2022 17:42:26 +0200 Subject: Removed MemDebug from FoundationEx --- Stars45/Element.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Stars45/Element.cpp') diff --git a/Stars45/Element.cpp b/Stars45/Element.cpp index c5f68e5..9223cbf 100644 --- a/Stars45/Element.cpp +++ b/Stars45/Element.cpp @@ -11,7 +11,6 @@ Package Element (e.g. Flight) class implementation */ -#include "MemDebug.h" #include "Element.h" #include "Instruction.h" #include "RadioMessage.h" @@ -532,7 +531,7 @@ Element::ClearInstructions() void Element::AddInstruction(const char* instr) { - instructions.append(new(__FILE__,__LINE__) Text(instr)); + instructions.append(new Text(instr)); } Text -- cgit v1.1