Other bits of tidying

This commit is contained in:
Nav
2022-06-22 22:24:27 +01:00
parent 1bfbeefb8d
commit c44fc2a3c0
5 changed files with 30 additions and 37 deletions

View File

@@ -4,11 +4,6 @@
#include "Application.hpp"
int main(int argc, char* argv[]) {
auto arguments = std::vector<std::string>();
if (argc > 1) {
arguments.assign(argv + 1, argv + argc);
}
auto application = Bloom::Application();
return application.run(arguments);
auto application = Bloom::Application(std::vector<std::string>(argv, argv + argc));
return application.run();
}