< Previous by Date Date Index Next by Date >
  Thread Index Next in Thread >

[reSIProcate] about Processor::pushAddres(const std::vector<short>& address)


hi repro,

    I found in Processor:: pushAddress(),
        for(std::vector<short>::const_reverse_iterator i=address.rbegin();i!=address.rend();++i)
       {
          mAddress.push_back(*i);
       }

        i think it should be

        for(std::vector<short>::const_iterator i=address.begin();i!=address.end();++i)
       {
          mAddress.push_back(*i);
       }
      Do you think so?  For ProcessorChain's mAddress is already reverse sequence.

    hongsion
    2007-07-04