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 39d797b commit a605a3dCopy full SHA for a605a3d
src/datatype.c
@@ -72,7 +72,7 @@ JL_DLLEXPORT jl_typename_t *jl_new_typename_in(jl_sym_t *name, jl_module_t *modu
72
jl_atomic_store_relaxed(&tn->cache, jl_emptysvec);
73
jl_atomic_store_relaxed(&tn->linearcache, jl_emptysvec);
74
tn->names = NULL;
75
- tn->hash = bitmix(bitmix(module ? module->build_id.lo : 0, name->hash), 0xa1ada1da);
+ tn->hash = bitmix(bitmix(module ? module->build_id : 0, name->hash), 0xa1ada1da);
76
tn->_reserved = 0;
77
tn->abstract = abstract;
78
tn->mutabl = mutabl;
0 commit comments