trackmode.cpp:

- removed Visual Studio warnings
This commit is contained in:
granzuglia 2014-08-09 09:52:27 +00:00
parent f3fe37bed1
commit e24129b20e
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ void AreaMode::Undo(){
delta_mouse=undo_delta_mouse;
old_status=undo_old_status;
rubberband_handle=undo_rubberband_handle;
for(unsigned int i=path.size() - 1; i > undo_path_index; --i)
for(size_t i=path.size() - 1; i > undo_path_index; --i)
path.pop_back();
}