mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-27 07:03:36 -04:00
Merge branch 'release/1.10.x'
This commit is contained in:
commit
c9520c8daf
@ -15,7 +15,7 @@
|
||||
*
|
||||
*/
|
||||
constexpr MutexPosixImpl::
|
||||
MutexPosixImpl() noexcept : _lock(PTHREAD_MUTEX_INITIALIZER) {
|
||||
MutexPosixImpl() noexcept {
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -40,7 +40,7 @@ public:
|
||||
INLINE void unlock();
|
||||
|
||||
private:
|
||||
pthread_mutex_t _lock;
|
||||
pthread_mutex_t _lock = PTHREAD_MUTEX_INITIALIZER;
|
||||
friend class ConditionVarPosixImpl;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user