mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
util-event: Fix duplicated name
This commit is contained in:
parent
4fda7de573
commit
1285e7efd3
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ namespace util {
|
|||
event(event<_args...>&& other) : event()
|
||||
{
|
||||
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||
std::lock_guard<std::recursive_mutex> lg(other._lock);
|
||||
std::lock_guard<std::recursive_mutex> lgo(other._lock);
|
||||
|
||||
_listeners.swap(other._listeners);
|
||||
_cb_fill.swap(other._cb_fill);
|
||||
|
|
Loading…
Reference in a new issue