Skip to content

Commit

Permalink
make the timer map private
Browse files Browse the repository at this point in the history
  • Loading branch information
itzurabhi committed Jun 18, 2024
1 parent 79058bb commit 6a2bbd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/KDFoundation/platform/macos/macos_platform_event_loop.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ class KDFOUNDATION_API MacOSPlatformEventLoop : public AbstractPlatformEventLoop

static void postEmptyEvent();

std::unordered_map<void *, MacOSPlatformTimer *> timerMap;

private:
std::unique_ptr<AbstractPlatformTimer> createPlatformTimerImpl(Timer *timer) override;

std::unordered_map<void *, MacOSPlatformTimer *> timerMap;
friend class MacOSPlatformTimer;
};

} // namespace KDFoundation

0 comments on commit 6a2bbd8

Please sign in to comment.