mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Deprecate the internal int/uint types in favor of the cstdint types they were based on
This commit is contained in:
parent
18e4976c6c
commit
54752ef9a1
218 changed files with 1331 additions and 1323 deletions
|
@ -162,12 +162,12 @@ finger { rules_lval.val = Rule::FINGER; return TOK_PATTERN_TYPE; }
|
|||
}
|
||||
|
||||
{D} {
|
||||
rules_lval.val = (uint32) atoi(yytext);
|
||||
rules_lval.val = (uint32_t) atoi(yytext);
|
||||
return TOK_INT;
|
||||
}
|
||||
|
||||
0x{H} {
|
||||
rules_lval.val = (uint32) strtol(yytext, 0, 16);
|
||||
rules_lval.val = (uint32_t) strtol(yytext, 0, 16);
|
||||
return TOK_INT;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue