diff options
Diffstat (limited to 'src/antcc.h')
| -rw-r--r-- | src/antcc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/antcc.h b/src/antcc.h index fcaf02a..b467156 100644 --- a/src/antcc.h +++ b/src/antcc.h @@ -291,7 +291,7 @@ extern char pmap_tombstone_[]; #define pmap_del(m, k) pmap_del_(&(m)->mb, k) #define pmap_each(m,kx,pvx) \ for (size_t _i = 0; _i < (m)->mb.N && ((kx) = (m)->mb.k[_i], (pvx) = &(m)->v[_i], 1); ++_i) \ - if (kx && kx != pmap_tombstone_) + if (kx && kx != (void*)pmap_tombstone_) /********/ /** IO **/ |