We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a95d5ed commit 18e4669Copy full SHA for 18e4669
swift/Sources/FlexBuffers/Writer/FlexBuffersWriter.swift
@@ -763,11 +763,14 @@ public struct FlexBuffersWriter {
763
let vloc = _bb.writerIndex
764
765
for i in stride(from: start, to: stack.count, by: step) {
766
+ print("### stack[i]", stack[i])
767
write(value: stack[i], byteWidth: byteWidth)
768
}
769
770
if !typed {
771
772
773
+ print("### packedtype", stack[i].storedPackedType(width: bitWidth))
774
_bb.write(stack[i].storedPackedType(width: bitWidth), len: 1)
775
776
0 commit comments