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

hongsion hongsion at gmail.com
Wed Jul 4 02:07:26 CDT 2007


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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://list.resiprocate.org/pipermail/resiprocate-devel/attachments/20070704/b604226f/attachment.htm>


More information about the resiprocate-devel mailing list