Fix missing switch case warnings.

develop
Alexander Gavrilov 2012-05-05 19:36:22 +04:00
parent 4e084d0df7
commit e3440126a3
1 changed files with 6 additions and 2 deletions

@ -187,7 +187,9 @@ static command_result stockcheck(color_ostream &out, vector <string> & parameter
case general_ref_type::BUILDING_HOLDER:
building = ref->getBuilding();
break;
default:
break;
}
}
@ -214,7 +216,9 @@ static command_result stockcheck(color_ostream &out, vector <string> & parameter
case general_ref_type::BUILDING_HOLDER:
building = ref->getBuilding();
break;
default:
break;
}
}
}