util-event: Fix duplicated name

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2020-03-31 15:47:15 +02:00
parent 4fda7de573
commit 1285e7efd3
1 changed files with 1 additions and 1 deletions

View File

@ -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);