diff --git a/MsgPack/Decoder.swift b/MsgPack/Decoder.swift index b2408c3..e02be86 100644 --- a/MsgPack/Decoder.swift +++ b/MsgPack/Decoder.swift @@ -251,6 +251,8 @@ struct MsgPckKeyedDecodingContainer: KeyedDecodingContainerProtoco switch decoder.storage[cursor] { case FormatID.fixMapRange: valueFormat = .fixMap + case FormatID.fixArrayRange: + fatalError("array decoding not implemented") case FormatID.fixStringRange: valueFormat = .fixString case FormatID.positiveInt7Range: