mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 13:38:19 +00:00
Deprecate ptr_compat_uint and ptr_compat_int in util.h
This commit is contained in:
parent
289c03d386
commit
8862b585fa
6 changed files with 14 additions and 15 deletions
|
@ -31,7 +31,7 @@ void CCL::Negate()
|
|||
|
||||
void CCL::Add(int sym)
|
||||
{
|
||||
ptr_compat_int sym_p = ptr_compat_int(sym);
|
||||
auto sym_p = static_cast<std::intptr_t>(sym);
|
||||
|
||||
// Check to see if the character is already in the ccl.
|
||||
for ( auto sym : *syms )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue