offset escaping

This commit is contained in:
Mike J Innes 2016-11-15 16:39:51 +00:00
parent 8fceb62d33
commit b7caaf4a65
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ function makegraph(graph, args)
end
graph = map(graph) do x
isa(x, Offset) ?
:(Offset($(Expr(:quote, x.name)), $(x.n), self.$(x.name))) :
:(Flux.Offset($(Expr(:quote, x.name)), $(x.n), self.$(x.name))) :
x
end
end