Skip to content
Snippets Groups Projects
Commit 2653a4e6 authored by Patrick Baudin's avatar Patrick Baudin
Browse files

[ACSL] fixes casts to unsigned short int

parent a788d911
No related branches found
No related tags found
No related merge requests found
......@@ -812,6 +812,9 @@ type_spec:
| SHORT { LTint IShort } /** [short] */
| SIGNED SHORT { LTint IShort } /** [short] */
| UNSIGNED SHORT { LTint IUShort } /** [unsigned short] */
| SHORT INT { LTint IShort } /** [short] */
| SIGNED SHORT INT { LTint IShort } /** [short] */
| UNSIGNED SHORT INT { LTint IUShort } /** [unsigned short] */
| LONG { LTint ILong } /** [long] */
| SIGNED LONG { LTint ILong } /** [long] */
| UNSIGNED LONG { LTint IULong } /** [unsigned long] */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment