diff --git a/Source/Core/DolphinQt/QtUtils/RunOnObject.h b/Source/Core/DolphinQt/QtUtils/RunOnObject.h index a768b71cb1..8639687da2 100644 --- a/Source/Core/DolphinQt/QtUtils/RunOnObject.h +++ b/Source/Core/DolphinQt/QtUtils/RunOnObject.h @@ -26,7 +26,7 @@ class QObject; template auto RunOnObject(QObject* object, F&& functor) { - using OptionalResultT = std::optional>; + using OptionalResultT = std::optional>; // If we queue up a functor on the current thread, it won't run until we return to the event loop, // which means waiting for it to finish will never complete. Instead, run it immediately.