removing using namespace std from header files
This commit is contained in:
parent
090e0e438e
commit
6b44e8e23e
|
@ -212,7 +212,7 @@ protected:
|
||||||
} else { //last item is locked need to reorder stack
|
} else { //last item is locked need to reorder stack
|
||||||
remove = this->heap.popMin();
|
remove = this->heap.popMin();
|
||||||
this->heap.push(remove);
|
this->heap.push(remove);
|
||||||
cout << "Reordering stack something (what?)\n";
|
std::cout << "Reordering stack something (what?)\n";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -140,7 +140,7 @@ class Controller {
|
||||||
void resume() {
|
void resume() {
|
||||||
assert(!stopped);
|
assert(!stopped);
|
||||||
assert(paused);
|
assert(paused);
|
||||||
cout << "Resume" << endl;
|
std::cout << "Resume" << std::endl;
|
||||||
|
|
||||||
//unlock and open all doors
|
//unlock and open all doors
|
||||||
for(unsigned int i = 0; i < caches.size(); i++) {
|
for(unsigned int i = 0; i < caches.size(); i++) {
|
||||||
|
|
Loading…
Reference in New Issue