widl: Remove dead code in write_msft.c.

This commit is contained in:
Dan Hipschman 2007-05-09 20:49:06 -07:00 committed by Alexandre Julliard
parent 541dddfde3
commit 234855f059

View file

@ -1157,14 +1157,6 @@ static int encode_var(
vt = get_type_vt(var->type);
type = var->type;
while(!vt) {
if(type->ref == NULL) {
vt = VT_VOID;
break;
}
type = type->ref;
vt = get_type_vt(type);
}
encode_type(typelib, vt, type, encoded_type, width, alignment, decoded_size);
if(type->type == RPC_FC_IP) return 2;
return 0;