mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 21:21:15 -03:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user