pyahocorasick icon indicating copy to clipboard operation
pyahocorasick copied to clipboard

Fix Integer Cast Order

Open nathaniel-daniel opened this issue 2 years ago • 0 comments

This PR fixes a compiler warning created by negating an unsigned integer before casting it to a signed integer. This is fixed by explicitly casting the unsized integer to a long int, the type it is implicitly casted to, before negating it.

nathaniel-daniel avatar Aug 21 '22 02:08 nathaniel-daniel