Skip to content

Commit 867457d

Browse files
committed
Fixed compiler failure caused by smarter generic type inference.
1 parent 4931c69 commit 867457d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ buildscript {
1717
}
1818

1919
group 'com.github.jonathanxd'
20-
version '4.0.1.bytecode'
20+
version '4.0.1.bytecode.1'
2121

2222
apply from: project(":Kores").file("gradle/common.gradle")
2323

src/main/kotlin/com/github/jonathanxd/kores/bytecode/pre/GenLineVisitor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ object GenLineVisitor {
124124
.declaration(visit(insn.declaration, data))
125125
.build()
126126
}
127-
is BodyHolder -> createLineAndTransform(insn, data) {
127+
is BodyHolder -> createLineAndTransform<Instruction>(insn, data) {
128128
(it as BodyHolder).builder()
129129
.body(visit(insn.body, data))
130130
.build() as Instruction

0 commit comments

Comments
 (0)