Skip to content

Commit ddcdd43

Browse files
committed
fixup! make the TypeMap capable of splitting on any concrete type or typename
1 parent 5be7340 commit ddcdd43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/typemap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static int jl_is_any(jl_value_t *t1)
2424
return t1 == (jl_value_t*)jl_any_type;
2525
}
2626

27-
static jl_value_t *jl_type_extract_name(jl_value_t *t1)
27+
static jl_value_t *jl_type_extract_name(jl_value_t *t1 JL_PROPAGATES_ROOT)
2828
{
2929
if (jl_is_unionall(t1))
3030
t1 = jl_unwrap_unionall(t1);

0 commit comments

Comments
 (0)