Skip to content

Commit

Permalink
fix serialization typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash committed Nov 1, 2015
1 parent ed57f9a commit 843ab66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/serialize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function serialize(s::SerializationState, v::SimpleVector)
writetag(s.io, SIMPLEVECTOR_TAG)
write(s.io, Int32(length(v)))
for i = 1:length(v)
serialize(s.io, v[i])
serialize(s, v[i])
end
end

Expand Down

1 comment on commit 843ab66

@tkelman
Copy link
Contributor

@tkelman tkelman commented on 843ab66 Nov 3, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs tests

Please sign in to comment.