Skip to content
Permalink
Browse files
Merge pull request #11720 from Pokechu22/hookable-event-recursive-mutex
HookableEvent: Use std::recursive_mutex instead of std::mutex
  • Loading branch information
AdmiralCurtiss committed Apr 10, 2023
2 parents fdc1ff1 + 9e0755a commit 948a548
Showing 1 changed file with 1 addition and 1 deletion.
@@ -69,7 +69,7 @@ class HookableEvent

struct Storage
{
std::mutex m_mutex;
std::recursive_mutex m_mutex;
std::vector<HookImpl*> m_listeners;
};

0 comments on commit 948a548

Please sign in to comment.