summaryrefslogtreecommitdiffhomepage
path: root/Stars45/System.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-03-27 17:42:26 +0200
committerAki <please@ignore.pl>2022-03-27 17:42:26 +0200
commita12e588079700d55a0b788fea2df7727c2e41f52 (patch)
tree690072569624c73af5043b3619acaab4d298b1fa /Stars45/System.cpp
parent72bb517271dad40a440533ad0796a88247011199 (diff)
downloadstarshatter-a12e588079700d55a0b788fea2df7727c2e41f52.zip
starshatter-a12e588079700d55a0b788fea2df7727c2e41f52.tar.gz
starshatter-a12e588079700d55a0b788fea2df7727c2e41f52.tar.bz2
Removed MemDebug from FoundationEx
Diffstat (limited to 'Stars45/System.cpp')
-rw-r--r--Stars45/System.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Stars45/System.cpp b/Stars45/System.cpp
index 51af575..111addc 100644
--- a/Stars45/System.cpp
+++ b/Stars45/System.cpp
@@ -11,7 +11,6 @@
Generic Ship Subsystem class
*/
-#include "MemDebug.h"
#include "System.h"
#include "SystemDesign.h"
#include "Component.h"
@@ -57,7 +56,7 @@ emcon(s.emcon)
// cast-away const
ListIter<Component> c = (List<Component>&) s.components;
while (++c) {
- Component* comp = new(__FILE__,__LINE__) Component(*(c.value()));
+ Component* comp = new Component(*(c.value()));
comp->SetSystem(this);
components.append(comp);
}
@@ -90,7 +89,7 @@ System::SetDesign(SystemDesign* d)
ListIter<ComponentDesign> cd = design->components;
while (++cd) {
- Component* comp = new(__FILE__,__LINE__) Component(cd.value(), this);
+ Component* comp = new Component(cd.value(), this);
components.append(comp);
}
}