unused params warnings removed

This commit is contained in:
Matej Sekoranja
2012-10-10 12:02:12 +02:00
parent 6f653cc3af
commit e11cca0fdb
33 changed files with 190 additions and 160 deletions

View File

@@ -44,7 +44,7 @@ ReferenceCountingLock::~ReferenceCountingLock()
// pthread_mutex_destroy(_mutex);
}
bool ReferenceCountingLock::acquire(int64 msecs)
bool ReferenceCountingLock::acquire(int64 /*msecs*/)
{
_mutex.lock();
return true;