summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-05 19:34:18 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-05 19:34:18 -0400
commit1a7c5f692f271ad740f6c107d11c60ef411f691e (patch)
treee46ce62749f139b352dd210d9bd02c5ef239f3fb /src
parent84fa80132e423b707afa6ccb571ccdfa2577cad9 (diff)
TMainTask: Match destructor
Diffstat (limited to 'src')
-rw-r--r--src/pso/TMainTask.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pso/TMainTask.cpp b/src/pso/TMainTask.cpp
index 6a8c2bd..c02b4ac 100644
--- a/src/pso/TMainTask.cpp
+++ b/src/pso/TMainTask.cpp
@@ -49,7 +49,9 @@ void TMainTask::run_task() {
}
TMainTask::~TMainTask() {
- this->delete_children();
+ delete_children();
+ delete alt_heap;
+ delete obj_heap;
}
void TMainTask::init_main_task() {