mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 02:53:10 +01:00
Remove trailing whitespace (#3668)
This commit is contained in:
@@ -37,7 +37,7 @@ protected:
|
||||
void writeLockImpl();
|
||||
bool tryWriteLockImpl();
|
||||
void unlockImpl();
|
||||
|
||||
|
||||
private:
|
||||
pthread_mutex_t _mutex;
|
||||
};
|
||||
@@ -48,7 +48,7 @@ private:
|
||||
//
|
||||
inline void RWLockImpl::readLockImpl()
|
||||
{
|
||||
if (pthread_mutex_lock(&_mutex))
|
||||
if (pthread_mutex_lock(&_mutex))
|
||||
throw SystemException("cannot lock reader/writer lock");
|
||||
}
|
||||
|
||||
@@ -67,7 +67,7 @@ inline bool RWLockImpl::tryReadLockImpl()
|
||||
|
||||
inline void RWLockImpl::writeLockImpl()
|
||||
{
|
||||
if (pthread_mutex_lock(&_mutex))
|
||||
if (pthread_mutex_lock(&_mutex))
|
||||
throw SystemException("cannot lock reader/writer lock");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user