Ticket #2963: inspect.patch

File inspect.patch, 445 bytes (added by Jeremiah Willcock, 14 years ago)

Patch to fix bug.

  • tools/inspect/inspect.cpp

     
    450450
    451451  void worst_offenders_count()
    452452  {
     453    if ( msgs.empty() )
     454    {
     455      return;
     456    }
    453457    string current_library( msgs.begin()->library );
    454458    int err_count = 0;
    455459    for ( error_msg_vector::iterator itr ( msgs.begin() );