switch back to norris style spacing in changed files
[model-checker.git] / schedule.cc
index 3769a5acaf8db809934e80a450f06360ca526db1..40f9894ebb9a7be5a8ecc918fe56038471c64020 100644 (file)
@@ -50,7 +50,7 @@ void Scheduler::print()
                DEBUG("No current thread\n");
        DEBUG("Num. threads in ready list: %zu\n", readyList.size());
 
-       std::list<Thread *>::iterator it;
+       std::list<Thread *, MyAlloc< Thread * > >::iterator it;
        for (it = readyList.begin(); it != readyList.end(); it++)
                DEBUG("In ready list: thread %d\n", (*it)->get_id());
 }