Skip to content

Commit

Permalink
fix deprecated a[i:] syntax and a merge error where fdwatcher_reinit …
Browse files Browse the repository at this point in the history
…should

be fdwatcher_init.
  • Loading branch information
JeffBezanson committed Apr 2, 2014
1 parent baa1acc commit 4d88d8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base/inference.jl
Expand Up @@ -2378,7 +2378,7 @@ function inlining_pass(e::Expr, sv, ast)
end

for ninline = 1:100
atypes = tuple(map(exprtype, e.args[2:])...)
atypes = tuple(map(exprtype, e.args[2:end])...)
if length(atypes) > MAX_TUPLETYPE_LEN
atypes = limit_tuple_type(atypes)
end
Expand Down
2 changes: 1 addition & 1 deletion base/poll.jl
Expand Up @@ -171,7 +171,7 @@ end
# on unix

let
global fdwatcher_reinit, wait
global fdwatcher_init, wait
@unix_only begin
local fdwatcher_array
function fdwatcher_init()
Expand Down

0 comments on commit 4d88d8e

Please sign in to comment.