Fix unused argument warning spotted in r2cutter (#18300)

Co-authored-by: pancake <pancake@nopcode.org>
This commit is contained in:
pancake 2021-01-27 10:53:03 +01:00 committed by GitHub
parent eb09312b83
commit 09cbd3d914
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,7 @@ static inline bool overflow_name(type_base a, type_base b) { \
}
#define UNSIGNED_DIV_OVERFLOW_CHECK(overflow_name, type_base, type_min, type_max) \
static inline bool overflow_name(type_base a, type_base b) { \
(void)(a); \
return !b; \
}