Ticket #8697: boost-uuid-shadow-1.53.diff

File boost-uuid-shadow-1.53.diff, 966 bytes (added by KaiSt <k.stuhlemmer@…>, 9 years ago)

created against version 1.53

  • boost/uuid/uuid_io.hpp

     
    5959        }
    6060       
    6161        if (flags & std::ios_base::left) {
    62             for (std::streamsize i=uuid_width; i<width; i++) {
     62            for (std::streamsize j=uuid_width; j<width; j++) {
    6363                os << fill;
    6464            }
    6565        }
  • boost/uuid/name_generator.hpp

     
    3030public:
    3131    typedef uuid result_type;
    3232
    33     explicit name_generator(uuid const& namespace_uuid)
    34         : namespace_uuid(namespace_uuid)
     33    explicit name_generator(uuid const& namespace_uuid_)
     34        : namespace_uuid(namespace_uuid_)
    3535    {}
    3636
    3737    uuid operator()(const char* name) {