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

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


        Yeah, you're right. Silly error on my part. I'll fix that.

Best regards,
Byron Campen

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
_______________________________________________
resiprocate-devel mailing list
resiprocate-devel@xxxxxxxxxxxxxxxxxxxx
https://list.resiprocate.org/mailman/listinfo/resiprocate-devel