aboutsummaryrefslogtreecommitdiffstats
path: root/src/threadpool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/threadpool.cpp')
-rw-r--r--src/threadpool.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/threadpool.cpp b/src/threadpool.cpp
index d49217d..619f002 100644
--- a/src/threadpool.cpp
+++ b/src/threadpool.cpp
@@ -1,5 +1,9 @@
#include "threadpool.h"
+/**
+ * Stolen from some guy.
+ */
+
// Constructor.
ThreadPool::ThreadPool(int threads) :
terminate(false),
@@ -92,4 +96,4 @@ ThreadPool::~ThreadPool()
{
ShutDown();
}
-} \ No newline at end of file
+}