From 78c028d4e0454d8c39050ebe39d29e4313783595 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Tue, 16 Jan 2024 21:11:40 +0100 Subject: [PATCH] Remove explicit CrashHandler template param No longer necessary since we call new CrashHandler --- src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.cpp b/src/Application.cpp index 16fe0bf78..786bb5bf8 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -120,7 +120,7 @@ Application::Application(Settings &_settings, const Paths &paths, , toasts(&this->emplace()) , imageUploader(&this->emplace()) , seventvAPI(&this->emplace()) - , crashHandler(&this->emplace(new CrashHandler(paths))) + , crashHandler(&this->emplace(new CrashHandler(paths))) , commands(&this->emplace()) , notifications(&this->emplace())