diff --git a/wrap/gcache/cache.h b/wrap/gcache/cache.h index f790690e..713e7a41 100644 --- a/wrap/gcache/cache.h +++ b/wrap/gcache/cache.h @@ -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; } } diff --git a/wrap/gcache/controller.h b/wrap/gcache/controller.h index 7c974887..ffe54903 100644 --- a/wrap/gcache/controller.h +++ b/wrap/gcache/controller.h @@ -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++) {