Skip to content

Commit

Permalink
0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nathantannar4 committed Jun 24, 2023
1 parent 49e1752 commit 1185f4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Example/Example/ViewStyleExamples.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

import SwiftUI
import Engine
import EngineCore

struct ViewStyleExamples: View {
@State var value = 0
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "EngineCore",
url: "https://github.com/nathantannar4/Engine/releases/download/0.1.8/EngineCore.xcframework.zip",
checksum: "112c37e3aafb03fb4bc43f00b6b9118bdcc0815613c926c62ea4859f120716d0"
url: "https://github.com/nathantannar4/Engine/releases/download/0.1.10/EngineCore.xcframework.zip",
checksum: "1e640b454bd9a626ad725c8ae34c3f2cd0523d5a78ee50794070593136288cef"
),
.target(
name: "Engine",
Expand Down
14 changes: 0 additions & 14 deletions Sources/Engine/Sources/VariadicView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -176,20 +176,6 @@ public struct VariadicViewAdapter<Source: View, Content: View>: View {
@usableFromInline
var content: (VariadicView<Source>) -> Content

/*
FB12082130: Xcode 14.3 RC regression, type inference no longer works unless
the `Source` parameter is before the `content`
@inlinable
public init(
@ViewBuilder content: @escaping (VariadicView<Source>) -> Content,
@ViewBuilder source: () -> Source
) {
self.source = source()
self.content = content
}
*/

@inlinable
public init(
@ViewBuilder source: () -> Source,
Expand Down

0 comments on commit 1185f4c

Please sign in to comment.