Skip to content

Commit

Permalink
remove another bit of dead code from specializing on all tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed May 25, 2015
1 parent 01c871c commit 52e4f3a
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/gf.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,15 +442,6 @@ static int very_general_type(jl_value_t *t)
((jl_tvar_t*)t)->ub==(jl_value_t*)jl_any_type)));
}

static int tuple_all_Any(jl_tupletype_t *t)
{
for(int i=0; i < jl_nparams(t); i++) {
if (jl_tparam(t,i) != (jl_value_t*)jl_any_type)
return 0;
}
return 1;
}

static int is_kind(jl_value_t *v)
{
return (v==(jl_value_t*)jl_uniontype_type ||
Expand Down

0 comments on commit 52e4f3a

Please sign in to comment.