mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-13 05:43:11 +00:00
Merge branch 'hotfix/memory'
This commit is contained in:
commit
0e0908f985
2 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
name = "XAM"
|
||||
uuid = "d759349c-bcba-11e9-07c2-5b90f8f05f7c"
|
||||
authors = ["Kenta Sato <bicycle1885@gmail.com>", "Ben J. Ward <ward9250@gmail.com>", "Ciarán O'Mara <Ciaran.OMara@utas.edu.au>"]
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
|
||||
[deps]
|
||||
Automa = "67c07d97-cdcb-5c2c-af73-a7f9c32a568b"
|
||||
|
|
|
@ -83,6 +83,8 @@ end
|
|||
|
||||
function Base.read!(rdr::Reader, rec::Record)
|
||||
|
||||
empty!(rec.fields) #Note: data is pushed to the fields field, and other field data is overwritten. #TODO: distinguish for inplace reading pattern.
|
||||
|
||||
cs, ln, f = readrecord!(rdr.state.stream, rec, (rdr.state.state, rdr.state.linenum))
|
||||
|
||||
rdr.state.state = cs
|
||||
|
|
Loading…
Reference in a new issue