Browse Source

Fixed an uninitialised variable in the posix implementation of HighResolutionTimer

tags/2021-05-28
ed 6 years ago
parent
commit
6567a7607f
1 changed files with 1 additions and 1 deletions
  1. +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;
std::atomic<int> periodMs;
std::atomic<int> periodMs { 0 };
private:
pthread_t thread = {};


Loading…
Cancel
Save