mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 05:08:54 +00:00
fixes bug which caused the wrong type to be scanned if the member name begins with 'long'
This commit is contained in:
parent
fc796e2588
commit
d9a3ba7a81
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ dec [0-9]+
|
|||
hex [0-9a-fA-F]+H
|
||||
number {dec}|{hex}
|
||||
|
||||
int_types "long long"|"long"|"int"|"byte"|"short"
|
||||
int_types "long long"{whitespace}|"long"|"int"|"byte"|"short"
|
||||
unsigned_int_types "unsigend "{int_types}
|
||||
signed_int_types "signed "{int_types}
|
||||
stdint_types_u "uint8_t"|"uint16_t"|"uint32_t"|"uint64_t"
|
||||
|
|
Loading…
Reference in a new issue