Skip to content

Commit 43bbb01

Browse files
committed
avoid some warnings
1 parent 929c5e3 commit 43bbb01

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
let result = Int.bitwiseAnd(1, 2)
2-
let result = Int.bitwiseOr(1, 2)
3-
let result = Int.bitwiseXor(1, 2)
4-
let result = Int.shiftLeft(1, 2)
5-
let result = Int.shiftRightUnsigned(1, 2)
6-
let result = Int.shiftRight(1, 2)
7-
let result = Int.bitwiseNot(0)
1+
let result1 = Int.bitwiseAnd(1, 2)
2+
let result2 = Int.bitwiseOr(1, 2)
3+
let result3 = Int.bitwiseXor(1, 2)
4+
let result4 = Int.shiftLeft(1, 2)
5+
let result5 = Int.shiftRightUnsigned(1, 2)
6+
let result6 = Int.shiftRight(1, 2)
7+
let result7 = Int.bitwiseNot(0)
88

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
let result = Int.Bitwise.land(1, 2)
2-
let result = Int.Bitwise.lor(1, 2)
3-
let result = Int.Bitwise.lxor(1, 2)
4-
let result = Int.Bitwise.lsl(1, 2)
5-
let result = Int.Bitwise.lsr(1, 2)
6-
let result = Int.Bitwise.asr(1, 2)
7-
let result = Int.Bitwise.lnot(0)
1+
let result1 = Int.Bitwise.land(1, 2)
2+
let result2 = Int.Bitwise.lor(1, 2)
3+
let result3 = Int.Bitwise.lxor(1, 2)
4+
let result4 = Int.Bitwise.lsl(1, 2)
5+
let result5 = Int.Bitwise.lsr(1, 2)
6+
let result6 = Int.Bitwise.asr(1, 2)
7+
let result7 = Int.Bitwise.lnot(0)
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// This file is autogenerated so it can be type checked.
22
// It's the migrated version of src/migrate/StdlibMigration_Int.res.
3-
let result = Int.bitwiseAnd(1, 2)
4-
let result = Int.bitwiseOr(1, 2)
5-
let result = Int.bitwiseXor(1, 2)
6-
let result = Int.shiftLeft(1, 2)
7-
let result = Int.shiftRightUnsigned(1, 2)
8-
let result = Int.shiftRight(1, 2)
9-
let result = Int.bitwiseNot(0)
3+
let result1 = Int.bitwiseAnd(1, 2)
4+
let result2 = Int.bitwiseOr(1, 2)
5+
let result3 = Int.bitwiseXor(1, 2)
6+
let result4 = Int.shiftLeft(1, 2)
7+
let result5 = Int.shiftRightUnsigned(1, 2)
8+
let result6 = Int.shiftRight(1, 2)
9+
let result7 = Int.bitwiseNot(0)

0 commit comments

Comments
 (0)