remove trailing whitespace

This commit is contained in:
Hubert Jarosz
2016-03-09 00:00:52 +01:00
parent 1dad6eca81
commit 4a4f247914
386 changed files with 7664 additions and 7664 deletions

View File

@ -33,7 +33,7 @@
/**
* @class Mutex
* @class Mutex
* @author Juan Linietsky
* Portable Mutex (thread-safe locking) implementation.
* Mutexes are always recursive ( they don't self-lock in a single thread ).
@ -43,9 +43,9 @@
class Mutex {
protected:
protected:
static Mutex* (*create_func)(bool);
public:
virtual void lock()=0; ///< Lock the mutex, block if locked by someone else
@ -53,7 +53,7 @@ public:
virtual Error try_lock()=0; ///< Attempt to lock the mutex, OK on success, ERROR means it can't lock.
static Mutex * create(bool p_recursive=true); ///< Create a mutex
virtual ~Mutex();
};