Added handling of unsigned type.

This commit is contained in:
Jacek Caban 2005-03-24 15:07:57 +00:00 committed by Alexandre Julliard
parent b675c1a92e
commit 10a605b072
1 changed files with 1 additions and 0 deletions

View File

@ -563,6 +563,7 @@ base_type: tBYTE { $$ = make_type(RPC_FC_BYTE, NULL); }
default: break;
}
}
| tUNSIGNED { $$ = make_type(RPC_FC_ULONG, &std_int); $$->sign = -1; }
| tFLOAT { $$ = make_type(RPC_FC_FLOAT, NULL); }
| tDOUBLE { $$ = make_type(RPC_FC_DOUBLE, NULL); }
| tBOOLEAN { $$ = make_type(RPC_FC_BYTE, &std_bool); /* ? */ }