memory leaks fixing

This commit is contained in:
Guillermo Roche 2020-05-31 19:24:19 +02:00
parent 782507ecf3
commit b8659268cc
2 changed files with 0 additions and 21 deletions

View File

@ -1,6 +0,0 @@
#include "thread_selector.h"
thread_selector::thread_selector()
{
}

View File

@ -1,15 +0,0 @@
#ifndef THREAD_SELECTOR_H
#define THREAD_SELECTOR_H
#include <queue>
#include <thread>
class thread_selector
{
public:
thread_selector();
private:
std::queue<int> t_pos;
std::thread* list;
};
#endif // THREAD_SELECTOR_H