Deprecate ptr_compat_uint and ptr_compat_int in util.h

This commit is contained in:
Tim Wojtulewicz 2020-08-05 14:42:28 -07:00
parent 289c03d386
commit 8862b585fa
6 changed files with 14 additions and 15 deletions

View file

@ -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 )