Ticket #8471: config.patch

File config.patch, 816 bytes (added by Alexander Kornienko <alexfh@…>, 10 years ago)
  • libs/config/test/boost_no_std_wstreambuf.ipp

     
    6161   case ::std::ios_base::beg:
    6262      if((off < 0) || (off > size))
    6363         return pos_type(off_type(-1));
    64       else
    65          this->setg(g, g + off, g + size);
     64      this->setg(g, g + off, g + size);
     65      BOOST_FALLTHROUGH;
    6666   case ::std::ios_base::end:
    6767      if((off < 0) || (off > size))
    6868         return pos_type(off_type(-1));
    69       else
    70          this->setg(g, g + size - off, g + size);
     69      this->setg(g, g + size - off, g + size);
     70      BOOST_FALLTHROUGH;
    7171   case ::std::ios_base::cur:
    7272   {
    7373      int newpos = pos + off;