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:
parent
827055c2c1
commit
6567a7607f
1 changed files with 1 additions and 1 deletions
|
|
@ -1352,7 +1352,7 @@ struct HighResolutionTimer::Pimpl
|
|||
}
|
||||
|
||||
HighResolutionTimer& owner;
|
||||
std::atomic<int> periodMs;
|
||||
std::atomic<int> periodMs { 0 };
|
||||
|
||||
private:
|
||||
pthread_t thread = {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue