Quellcode durchsuchen

limpieza de cout

Agustín Cangiani vor 10 Jahren
Ursprung
Commit
d4932ae94b
1 geänderte Dateien mit 0 neuen und 1 gelöschten Zeilen
  1. 0 1
      sched_rsjf.h

+ 0 - 1
sched_rsjf.h

@@ -30,7 +30,6 @@ class SchedRSJF : public SchedBase {
 
 			// Esto permite ordenar por la duración mínima
 			int operator()(const Process& me, const Process& other) {
-				cout << "Duration: " << me.duration << " < " << other.duration << "\n";
   				return me.duration > other.duration;
 			}	
 		};