X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=schedule.cc;h=40f9894ebb9a7be5a8ecc918fe56038471c64020;hb=1d6c949fef3b5da936f8499dde464f8df634267a;hp=3769a5acaf8db809934e80a450f06360ca526db1;hpb=cb4b972ff1d85e8f087afa4f001f52aad4a2b8a7;p=model-checker.git diff --git a/schedule.cc b/schedule.cc index 3769a5a..40f9894 100644 --- a/schedule.cc +++ b/schedule.cc @@ -50,7 +50,7 @@ void Scheduler::print() DEBUG("No current thread\n"); DEBUG("Num. threads in ready list: %zu\n", readyList.size()); - std::list::iterator it; + std::list >::iterator it; for (it = readyList.begin(); it != readyList.end(); it++) DEBUG("In ready list: thread %d\n", (*it)->get_id()); }