Merge branch 'release/1.10.x'

This commit is contained in:
rdb 2020-03-06 10:15:25 +01:00
commit c9520c8daf
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
*
*/
constexpr MutexPosixImpl::
MutexPosixImpl() noexcept : _lock(PTHREAD_MUTEX_INITIALIZER) {
MutexPosixImpl() noexcept {
}
/**

View File

@ -40,7 +40,7 @@ public:
INLINE void unlock();
private:
pthread_mutex_t _lock;
pthread_mutex_t _lock = PTHREAD_MUTEX_INITIALIZER;
friend class ConditionVarPosixImpl;
};