Skip to content

Commit

Permalink
lint?
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Nov 21, 2024
1 parent 443bbc5 commit ae072fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/AwsCommonRuntimeKit/crt/CBOR.swift
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ public class CBORDecoder {
self.rawValue = rawValue
}

// swiftlint:disable function_body_length
/// Decodes and returns the next value. If there is no value, this function will throw an error.
/// You must call `hasNext()` before calling this function.
// swiftlint:disable function_body_length
public func popNext() throws -> CBORType {
var cbor_type: aws_cbor_type = AWS_CBOR_TYPE_UNKNOWN
guard aws_cbor_decoder_peek_type(self.rawValue, &cbor_type) == AWS_OP_SUCCESS else {
Expand Down

0 comments on commit ae072fc

Please sign in to comment.