Merge pull request #11720 from Pokechu22/hookable-event-recursive-mutex

HookableEvent: Use std::recursive_mutex instead of std::mutex
This commit is contained in:
Admiral H. Curtiss 2023-04-10 22:50:44 +02:00 committed by GitHub
commit 948a548fb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ private:
struct Storage
{
std::mutex m_mutex;
std::recursive_mutex m_mutex;
std::vector<HookImpl*> m_listeners;
};