Ticket #8473: container.patch

File container.patch, 1.1 KB (added by Alexander Kornienko <alexfh@…>, 10 years ago)
  • boost/container/detail/utilities.hpp

     
    10551055         ::memcpy(short_ptr, stora_ptr, sizeof_storage);
    10561056         large_ptr += sizeof_storage;
    10571057         short_ptr += sizeof_storage;
     1058         BOOST_FALLTHROUGH;
    10581059      case 3:
    10591060         ::memcpy(stora_ptr, large_ptr, sizeof_storage);
    10601061         ::memcpy(large_ptr, short_ptr, sizeof_storage);
    10611062         ::memcpy(short_ptr, stora_ptr, sizeof_storage);
    10621063         large_ptr += sizeof_storage;
    10631064         short_ptr += sizeof_storage;
     1065         BOOST_FALLTHROUGH;
    10641066      case 2:
    10651067         ::memcpy(stora_ptr, large_ptr, sizeof_storage);
    10661068         ::memcpy(large_ptr, short_ptr, sizeof_storage);
    10671069         ::memcpy(short_ptr, stora_ptr, sizeof_storage);
    10681070         large_ptr += sizeof_storage;
    10691071         short_ptr += sizeof_storage;
     1072         BOOST_FALLTHROUGH;
    10701073      case 1:
    10711074         ::memcpy(stora_ptr, large_ptr, sizeof_storage);
    10721075         ::memcpy(large_ptr, short_ptr, sizeof_storage);