Skip to content

Commit 5d8ff76

Browse files
committed
fix build
There is a compiler bug somewhere.
1 parent e29cd80 commit 5d8ff76

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

src/main/kotlin/glm_/vec1/Vec1.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import kotlin.math.abs
1919
* Created by GBarbieri on 28.04.2017.
2020
*/
2121

22-
class Vec1(@JvmField inline var x: Float) : Vec1t<Float>, ToFloatBuffer {
22+
class Vec1(var x: Float) : Vec1t<Float>, ToFloatBuffer {
2323

2424
// -- Implicit basic constructors --
2525

src/main/kotlin/glm_/vec1/Vec1b.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import kool.pos
1919
import java.nio.*
2020
import kotlin.math.abs
2121

22-
class Vec1b(@JvmField inline var x: Byte) : Vec1t<Byte> {
22+
class Vec1b(var x: Byte) : Vec1t<Byte> {
2323

2424
// -- Implicit basic constructors --
2525

src/main/kotlin/glm_/vec1/Vec1d.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import kotlin.math.abs
1919
* Created by GBarbieri on 28.04.2017.
2020
*/
2121

22-
class Vec1d(@JvmField inline var x: Double) : Vec1t<Double>, ToDoubleBuffer {
22+
class Vec1d(var x: Double) : Vec1t<Double>, ToDoubleBuffer {
2323

2424
// -- Implicit basic constructors --
2525

src/main/kotlin/glm_/vec1/Vec1i.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import kotlin.math.abs
2222
* Created by GBarbieri on 04.04.2017.
2323
*/
2424

25-
class Vec1i(@JvmField inline var x: Int) : Vec1t<Int> , ToIntBuffer {
25+
class Vec1i(var x: Int) : Vec1t<Int> , ToIntBuffer {
2626

2727
// -- Implicit basic constructors --
2828

src/main/kotlin/glm_/vec1/Vec1l.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import kool.*
1818
import java.nio.*
1919
import kotlin.math.abs
2020

21-
class Vec1l(@JvmField inline var x: Long) : Vec1t<Long>, ToLongBuffer {
21+
class Vec1l(var x: Long) : Vec1t<Long>, ToLongBuffer {
2222

2323
// -- Implicit basic constructors --
2424

src/main/kotlin/glm_/vec1/Vec1s.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import kotlin.math.abs
1919
* Created by GBarbieri on 04.04.2017.
2020
*/
2121

22-
class Vec1s(@JvmField inline var x: Short) : Vec1t<Short>, ToShortBuffer {
22+
class Vec1s(var x: Short) : Vec1t<Short>, ToShortBuffer {
2323

2424
// -- Implicit basic constructors --
2525

src/main/kotlin/glm_/vec1/Vec1ub.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import kotlin.math.abs
2222
* Created by elect on 07/10/16.
2323
*/
2424

25-
class Vec1ub(@JvmField inline var x: Ubyte) : Vec1t<Ubyte> {
25+
class Vec1ub(var x: Ubyte) : Vec1t<Ubyte> {
2626

2727
// -- Implicit basic constructors --
2828

src/main/kotlin/glm_/vec1/Vec1ui.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import kotlin.math.abs
2121
* Created by elect on 08/10/16.
2222
*/
2323

24-
class Vec1ui(@JvmField inline var x: Uint) : Vec1t<Uint>, ToIntBuffer {
24+
class Vec1ui(var x: Uint) : Vec1t<Uint>, ToIntBuffer {
2525

2626
// -- Implicit basic constructors --
2727

src/main/kotlin/glm_/vec1/Vec1ul.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import java.nio.*
2424
* Created by elect on 08/10/16.
2525
*/
2626

27-
class Vec1ul(@JvmField inline var x: Ulong) : Vec1t<Ulong>, ToLongBuffer {
27+
class Vec1ul(var x: Ulong) : Vec1t<Ulong>, ToLongBuffer {
2828

2929
// -- Implicit basic constructors --
3030

src/main/kotlin/glm_/vec1/Vec1us.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import java.nio.*
2121
* Created by elect on 08/10/16.
2222
*/
2323

24-
class Vec1us(@JvmField inline var x: Ushort) : Vec1t<Ushort>, ToShortBuffer {
24+
class Vec1us(var x: Ushort) : Vec1t<Ushort>, ToShortBuffer {
2525

2626
// -- Implicit basic constructors --
2727

0 commit comments

Comments
 (0)