Skip to content

Commit 4a7ba4d

Browse files
committed
Fix warning in C++ compiler
1 parent 347faa9 commit 4a7ba4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsoniter-scala-core/native/src/main/resources/scala-native/multiply_high.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
long long jsoniter_scala_multiply_high(long long x, long long y) {
66
long long high_product;
7-
_mul128(x, y, &high_product);
7+
(void) _mul128(x, y, &high_product);
88
return high_product;
99
}
1010

0 commit comments

Comments
 (0)