Fix uninitalised variable in event.cpp (#5764)

master
Zeno- 2017-05-15 20:10:29 +10:00 committed by GitHub
parent 018217f6b2
commit 1bf9b25fb4
1 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,8 @@ Event::Event()
pthread_mutex_init(&mutex, NULL);
notified = false;
# endif
#elif USE_CPP11_MUTEX
notified = false;
#endif
}