Fixed compilation warning (C-style cast)
Former-commit-id: 063414bfd23047ce05010546f3cfe5188bd8e9b7
This commit is contained in:
parent
54bc1d77fd
commit
8595a110a4
|
|
@ -67,7 +67,7 @@
|
||||||
* 64-bit words):
|
* 64-bit words):
|
||||||
*/
|
*/
|
||||||
#define ADDINC128(w,n) { \
|
#define ADDINC128(w,n) { \
|
||||||
(w)[0] += (nzUInt64)(n); \
|
(w)[0] += static_cast<nzUInt64>(n); \
|
||||||
if ((w)[0] < (n)) { \
|
if ((w)[0] < (n)) { \
|
||||||
(w)[1]++; \
|
(w)[1]++; \
|
||||||
} \
|
} \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue