This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed an uninitialised variable in the posix implementation of HighResolutionTimer
tags/2021-05-28
ed
6 years ago
parent
827055c2c1
commit
6567a7607f
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_core/native/juce_posix_SharedCode.h
+ 1
- 1
modules/juce_core/native/juce_posix_SharedCode.h
View File
@@ -1352,7 +1352,7 @@ struct HighResolutionTimer::Pimpl
}
}
HighResolutionTimer& owner;
HighResolutionTimer& owner;
std::atomic<int> periodMs;
std::atomic<int> periodMs
{ 0 }
;
private:
private:
pthread_t thread = {};
pthread_t thread = {};
Write
Preview
Loading…
Cancel
Save