1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Fixed an uninitialised variable in the posix implementation of HighResolutionTimer

This commit is contained in:
ed 2019-03-26 18:26:24 +00:00
parent 827055c2c1
commit 6567a7607f

View file

@ -1352,7 +1352,7 @@ struct HighResolutionTimer::Pimpl
}
HighResolutionTimer& owner;
std::atomic<int> periodMs;
std::atomic<int> periodMs { 0 };
private:
pthread_t thread = {};