From adc2db9bb29e7f316c46b6de679db1522ffc9cc8 Mon Sep 17 00:00:00 2001 From: 杨锴 <841720330@qq.com> Date: 星期五, 23 八月 2024 11:39:37 +0800 Subject: [PATCH] fix --- Pods/CryptoSwift/Sources/CryptoSwift/CS_BigInt/BigUInt.swift | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Pods/CryptoSwift/Sources/CryptoSwift/CS_BigInt/BigUInt.swift b/Pods/CryptoSwift/Sources/CryptoSwift/CS_BigInt/BigUInt.swift index 3461bf9..f248fb4 100644 --- a/Pods/CryptoSwift/Sources/CryptoSwift/CS_BigInt/BigUInt.swift +++ b/Pods/CryptoSwift/Sources/CryptoSwift/CS_BigInt/BigUInt.swift @@ -29,8 +29,8 @@ case array } - internal fileprivate (set) var kind: Kind // Internal for testing only - internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies + internal fileprivate(set) var kind: Kind // Internal for testing only + internal fileprivate(set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies /// Initializes a new BigUInt with value 0. public init() { -- Gitblit v1.7.1