Changed iterators from iter++ to ++iter

Large set of changes to history to ensure that histories from other sessions don't "bleed" into the current session
This commit is contained in:
ridiculousfish
2012-03-01 14:56:34 -08:00
parent 5d18d60e3b
commit fd4df6f9bb
11 changed files with 171 additions and 48 deletions

View File

@@ -1424,7 +1424,7 @@ int main (int argc, char *argv[])
*/
if( output_type == LAUNCH && !error )
{
for( launch_hash_t::iterator iter = launch_hash.begin(); iter != launch_hash.end(); iter++)
for( launch_hash_t::iterator iter = launch_hash.begin(); iter != launch_hash.end(); ++iter)
{
const char *mimetype = iter->first.c_str();
string_list_t &files = iter->second;