s-yata / marisa-trie

MARISA: Matching Algorithm with Recursively Implemented StorAge
Other
506 stars 89 forks source link

Use (0 - x) instead of (~x - 1) for -x #34

Open jmr opened 3 years ago

jmr commented 3 years ago

26b4626 changed this from-x to ~x - 1 to avoid MSVC compilation errors. 0 - x is less obscure.