We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff22bd9 commit 95cb94cCopy full SHA for 95cb94c
src/flisp/julia_extensions.c
@@ -169,7 +169,7 @@ void jl_charmap_init(fl_context_t *fl_ctx)
169
directly to pointer keys works because pointers are at
170
least 32 bits on all Julia-supported systems, and because
171
we never map anything to U+0001 (since HT_NOTFOUND is (void*)1). */
172
- assert((void*)charmap[i][1] != HT_NOTFOUND);
+ assert((void*)(uintptr_t)charmap[i][1] != HT_NOTFOUND);
173
wcharhash_put_r(h, (void*)((uintptr_t)charmap[i][0]),
174
(void*)((uintptr_t)charmap[i][1]), (void*)fl_ctx);
175
}
0 commit comments