Browse Source

Limpieza ej6

Agustín Cangiani 10 years ago
parent
commit
1fb7db404d
1 changed files with 0 additions and 2 deletions
  1. 0 2
      sched_sjf.h

+ 0 - 2
sched_sjf.h

@@ -31,8 +31,6 @@ class SchedSJF : public SchedBase {
 		};
 
 		std::map<int, Process> p_map;  // Mapeo de los procesos
-		typedef std::map<int,Process>::iterator it_type;
-
 		std::priority_queue<Process, std::vector<Process>, Process> pq;  // Procesos en estado READY o RUNNING
 };