Remove unused variable assignments, dead code.

This commit is contained in:
Jon Siwek 2013-09-23 16:57:31 -05:00
parent 9c2a3124e0
commit e4e7c78925
5 changed files with 4 additions and 11 deletions

View file

@ -194,8 +194,7 @@ static void parse_function_name(vector<ParseLocationRec>& result,
return;
}
FuncType* ftype;
if ( ! (ftype = id->Type()->AsFuncType()) )
if ( ! id->Type()->AsFuncType() )
{
debug_msg("Function %s not declared.\n", id->Name());
plr.type = plrUnknown;