removing using namespace std from header files

This commit is contained in:
alemuntoni 2021-11-17 16:57:23 +01:00
parent 090e0e438e
commit 6b44e8e23e
2 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ protected:
} else { //last item is locked need to reorder stack
remove = this->heap.popMin();
this->heap.push(remove);
cout << "Reordering stack something (what?)\n";
std::cout << "Reordering stack something (what?)\n";
return true;
}
}

View File

@ -140,7 +140,7 @@ class Controller {
void resume() {
assert(!stopped);
assert(paused);
cout << "Resume" << endl;
std::cout << "Resume" << std::endl;
//unlock and open all doors
for(unsigned int i = 0; i < caches.size(); i++) {