From b8659268cc14002e5433a044eead3610df72c993 Mon Sep 17 00:00:00 2001 From: groche97 Date: Sun, 31 May 2020 19:24:19 +0200 Subject: [PATCH] memory leaks fixing --- thread_selector.cpp | 6 ------ thread_selector.h | 15 --------------- 2 files changed, 21 deletions(-) delete mode 100644 thread_selector.cpp delete mode 100644 thread_selector.h diff --git a/thread_selector.cpp b/thread_selector.cpp deleted file mode 100644 index e040f3c..0000000 --- a/thread_selector.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "thread_selector.h" - -thread_selector::thread_selector() -{ - -} diff --git a/thread_selector.h b/thread_selector.h deleted file mode 100644 index 5f28858..0000000 --- a/thread_selector.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef THREAD_SELECTOR_H -#define THREAD_SELECTOR_H -#include -#include - -class thread_selector -{ -public: - thread_selector(); -private: - std::queue t_pos; - std::thread* list; -}; - -#endif // THREAD_SELECTOR_H