~kinkie/squid/sbuf

« back to all changes in this revision

Viewing changes to src/SBufAlgos.h

  • Committer: Francesco Chemolli
  • Date: 2016-01-02 15:31:24 UTC
  • Revision ID: kinkie@squid-cache.org-20160102153124-60gv0uh1u2as49da
Resync with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
        return SBuf();
72
72
 
73
73
    SBuf rv;
74
 
    rv.reserveSpace(sz);
 
74
    rv.reserve(sz);
75
75
 
76
76
    typename Container::const_iterator i(items.begin());
77
77
    rv.append(*i);