Remove all uses of LOVE_UNUSED, and simply not name the arguments instead

This commit is contained in:
Bart van Strien
2011-12-20 20:26:17 +01:00
parent 9fb63dc4b8
commit 53e010a832
4 changed files with 6 additions and 8 deletions
+3 -3
View File
@@ -32,7 +32,7 @@ namespace thread
class Mutex {
private:
SDL_mutex* mutex;
Mutex(const Mutex& mutex) {LOVE_UNUSED(mutex);}
Mutex(const Mutex&/* mutex*/) {}
friend class Conditional;
@@ -49,7 +49,7 @@ namespace thread
class ThreadBase {
private:
SDL_Thread* thread;
ThreadBase(ThreadBase& thread) {LOVE_UNUSED(thread);}
ThreadBase(ThreadBase&/* thread*/) {}
bool running;
static int thread_runner(void* param);
@@ -71,7 +71,7 @@ namespace thread
class Semaphore {
private:
Semaphore(const Semaphore& sem) {LOVE_UNUSED(sem);}
Semaphore(const Semaphore&/* sem*/) {}
SDL_sem* semaphore;
public: