Removed using namespace directive for class member function definitions in source files

This commit is contained in:
Nav
2022-02-05 15:32:08 +00:00
parent 9bbc534973
commit 53a3c815d7
116 changed files with 13113 additions and 12664 deletions

View File

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