--- linuxsampler/trunk/src/common/Pool.h 2011/08/19 10:55:41 2246 +++ linuxsampler/trunk/src/common/Pool.h 2011/08/19 11:26:40 2247 @@ -387,8 +387,8 @@ */ RTList(RTList& list) : RTListBase::RTListBase() { this->pPool = list.pPool; - RTList::Iterator it = list.first(); - RTList::Iterator end = list.end(); + Iterator it = list.first(); + Iterator end = list.end(); for(; it != end; ++it) { if (poolIsEmpty()) break; *(allocAppend()) = *it;