And now a warning generated by g++ that clang++ missed.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2721 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2013-05-06 15:47:40 +00:00
parent 2bc7b72b7f
commit 31b1d849fe
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ void Dialog::TabFocus::appendFocusList(WidgetArray& list)
{
int active = widget->getActiveTab();
if(active >= 0 && active < focus.size())
if(active >= 0 && active < (int)focus.size())
list.push_back(focus[active].list);
}