From 785293f4bf1beec65d23be0612e545e4c26ec366 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 15 Jan 2024 19:27:53 +0100 Subject: b --- main/main-impl.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'main') diff --git a/main/main-impl.cpp b/main/main-impl.cpp index ae074a49..cb74de85 100644 --- a/main/main-impl.cpp +++ b/main/main-impl.cpp @@ -1,7 +1,5 @@ #include "main-impl.hpp" -#include "compat/assert.hpp" -#include -#include +#include #include namespace floormat { @@ -37,8 +35,7 @@ int main_impl::exec() floormat_main* floormat_main::create(floormat_app& app, fm_settings&& options) { - auto* ret = new main_impl(app, std::move(options), options.argc, const_cast(options.argv)); - fm_assert(ret); + auto* ret = new main_impl(app, Utility::move(options), options.argc, const_cast(options.argv)); return ret; } -- cgit v1.2.3