From a847388ee19484c1723ca2a86fac63760b047cdc Mon Sep 17 00:00:00 2001 From: Denes Matetelki Date: Sun, 4 Dec 2011 19:47:16 +0100 Subject: [PATCH] whitespace removes...when will i develom my own cpp coding standard? --- include/ThreadPool.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/ThreadPool.hpp b/include/ThreadPool.hpp index 300b117..3caa8bc 100644 --- a/include/ThreadPool.hpp +++ b/include/ThreadPool.hpp @@ -17,10 +17,10 @@ class ThreadPool ThreadPool(); ~ThreadPool(); - void pushTask( Task* task ); + void pushTask(Task* task); Task* popTask(); - void pushWorkerThread( Thread * thread); + void pushWorkerThread(Thread * thread); void startWorkerThreads(); void stop(); @@ -28,8 +28,8 @@ class ThreadPool private: - ThreadPool( const ThreadPool& ); - ThreadPool& operator=( const ThreadPool& ); + ThreadPool(const ThreadPool&); + ThreadPool& operator=(const ThreadPool&); std::vector m_threads; ConcurrentDeque m_tasks;