Update to LibConf system, added loading of dynamic libraries (only Linux for now) and some more fixes.
This commit is contained in:
@@ -110,7 +110,7 @@ inline void Signal<TArgs...>::emit(TArgs&&... args) noexcept
|
||||
// invoke all handlers
|
||||
for (RegisteredHandler& handler : handlers_)
|
||||
{
|
||||
handler.callable(forward<TArgs>(args)...);
|
||||
handler.callable(std::forward<TArgs>(args)...);
|
||||
}
|
||||
|
||||
// remove any oneshot
|
||||
|
||||
Reference in New Issue
Block a user