/[svn]/linuxsampler/trunk/src/common/Pool.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/common/Pool.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2246 by iliev, Thu Aug 18 11:32:33 2011 UTC revision 2247 by iliev, Fri Aug 19 11:26:40 2011 UTC
# Line 387  class RTList : public RTListBase<T> { Line 387  class RTList : public RTListBase<T> {
387           */           */
388          RTList(RTList<T>& list) : RTListBase<T>::RTListBase() {          RTList(RTList<T>& list) : RTListBase<T>::RTListBase() {
389              this->pPool = list.pPool;              this->pPool = list.pPool;
390              RTList<T>::Iterator it = list.first();              Iterator it = list.first();
391              RTList<T>::Iterator end = list.end();              Iterator end = list.end();
392              for(; it != end; ++it) {              for(; it != end; ++it) {
393                  if (poolIsEmpty()) break;                  if (poolIsEmpty()) break;
394                  *(allocAppend()) = *it;                  *(allocAppend()) = *it;

Legend:
Removed from v.2246  
changed lines
  Added in v.2247

  ViewVC Help
Powered by ViewVC