This commit is contained in:
Nav
2024-12-30 15:42:05 +00:00
parent 020d174a2d
commit e1831f3bbf
5 changed files with 7 additions and 21 deletions

View File

@@ -1,9 +1,5 @@
#include <string>
#include <vector>
#include "Application.hpp"
int main(int argc, char* argv[]) {
auto application = Application(std::vector<std::string>(argv, argv + argc));
return application.run();
return Application{{argv, argv + argc}}.run();
}