Remove variable shadows

This commit is contained in:
Seth Hillbrand 2022-07-06 16:05:20 -07:00
parent 955c5d039e
commit 2f7de851f4
1 changed files with 3 additions and 3 deletions

View File

@ -518,10 +518,10 @@ void PCM_TASK_MANAGER::deletePackageDirectories( const wxString&
}
// Delete any empty dirs
for( const wxString& dir : dirs )
for( const wxString& empty_dir : dirs )
{
wxFileName d( dir, "" );
d.Rmdir(); // not passing any flags here will only remove empty directories
wxFileName dname( empty_dir, "" );
dname.Rmdir(); // not passing any flags here will only remove empty directories
}
}
}