This commit is contained in:
jzmaddock
2013-12-14 17:42:13 +00:00
parent 7c7f38b009
commit e5bbcac3da
102 changed files with 214 additions and 187 deletions

View File

@ -378,7 +378,7 @@ The following example takes a html file and outputs a list of all the linked fil
char c;
while(is.get(c))
{
// use logarithmic growth stategy, in case
// use logarithmic growth strategy, in case
// in_avail (above) returned zero:
if(s.capacity() == s.size())
s.reserve(s.capacity() * 3);