remove debug statements

This commit is contained in:
2025-03-29 22:00:46 -05:00
parent ea67c91a4f
commit 6547b30d55
2 changed files with 1 additions and 5 deletions

View File

@@ -12,15 +12,12 @@ namespace Archimedes {
std::abort();
}
std::cout << "Initializing...\n";
instance = this;
}
App::~App() {
std::cout << "\nExiting...\n";
for(auto it = modules.begin(); it != modules.end(); it++) {
void* handle = (*it)->getHandle();
delete *it;
@@ -32,7 +29,6 @@ namespace Archimedes {
bool App::load(std::string lib, std::list<std::string> blacklist = {}) {
std::cout << "print twice!\n";
void* h = dlopen(lib.c_str(), RTLD_NOW);
if(!h) {