Skip to content

Commit

Permalink
Remove unused file
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Ye committed Nov 10, 2024
1 parent 2bef681 commit 6051098
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 394 deletions.
304 changes: 0 additions & 304 deletions [email protected]

This file was deleted.

18 changes: 0 additions & 18 deletions Sources/OpenSwiftUICore/Data/Protobuf/ProtobufEncoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,6 @@ extension ProtobufEncoder {
encodeVarintZZ(Int(value))
}

#if compiler(>=6.0)
/// Encodes a bitwise copyable value.
///
/// - Parameters:
Expand All @@ -757,23 +756,6 @@ extension ProtobufEncoder {
buffer.advanced(by: oldSize).storeBytes(of: value, as: T.self)
}
}
#else // FIXME: Remove this after we drop WASI 5.10 support
/// Encodes a bitwise copyable value.
///
/// - Parameters:
/// - value: The value to encode.
@inline(__always)
private mutating func encodeBitwiseCopyable<T>(_ value: T) {
let oldSize = size
let newSize = oldSize + MemoryLayout<T>.size
if capacity < newSize {
growBufferSlow(to: newSize).storeBytes(of: value, as: T.self)
} else {
size = newSize
buffer.advanced(by: oldSize).storeBytes(of: value, as: T.self)
}
}
#endif

/// Encodes a boolean value.
///
Expand Down
18 changes: 0 additions & 18 deletions Tests/OpenSwiftUICompatibilityTests/Scaffolding.swift

This file was deleted.

18 changes: 0 additions & 18 deletions Tests/OpenSwiftUICoreTests/Scaffolding.swift

This file was deleted.

18 changes: 0 additions & 18 deletions Tests/OpenSwiftUITests/Scaffolding.swift

This file was deleted.

Loading

0 comments on commit 6051098

Please sign in to comment.