Skip to content

Commit

Permalink
Merge pull request #22 from davidanthoff/morejulia036fixes
Browse files Browse the repository at this point in the history
Fix some typing issues that crash things on julia 0.3.6
  • Loading branch information
malmaud committed Apr 3, 2015
2 parents 38d4dcd + d21d538 commit f9be349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Autoreload.jl
Expand Up @@ -153,7 +153,7 @@ function areload(command= :force; kwargs...)
dependencies = get_dependency_graph()
file_order = topological_sort(dependencies)
should_reload = [filename=>false for filename in file_order]
marked_for_mtime_update = []
marked_for_mtime_update = String[]
for (i, file) in enumerate(file_order)
file_time = files[file].mtime
if reload_mtime(file) > file_time
Expand Down
2 changes: 1 addition & 1 deletion src/smart_types.jl
Expand Up @@ -212,7 +212,7 @@ end

function extract_modules(e_block)
modules = Dict{Symbol,Any}()
in_main = []
in_main = Any[]
info_debug("beginning module extraction")
for e in e_block.args
# isa(e, Expr) || continue
Expand Down

0 comments on commit f9be349

Please sign in to comment.