Skip to content

Commit

Permalink
Fix STONWriter>>#writeFloat: to respect referenced object protocol wh…
Browse files Browse the repository at this point in the history
…en writing the special cases (thx to TheGrump for uncovering this issue)
  • Loading branch information
Sven Van Caekenberghe committed Feb 7, 2023
1 parent 96de626 commit 89c7e59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ writeFloat: float
float negative
ifTrue: [ #negativeInfinity ]
ifFalse: [ #infinity ] ].
writeStream nextPutAll: 'Float['; print: argument; nextPut: $] ]
self writeObject: float named: #Float listSingleton: argument ]

0 comments on commit 89c7e59

Please sign in to comment.