From 14e7c4b7cf120e696d4601f653576d7042bd8e83 Mon Sep 17 00:00:00 2001 From: rbuj Date: Thu, 29 Aug 2019 21:41:37 +0200 Subject: The function 'mp_mask' is never used cppcheck --enable=unusedFunction . [src/mp-binary.c:165]: (style) The function 'mp_mask' is never used. --- src/mp.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/mp.h') diff --git a/src/mp.h b/src/mp.h index 352dd52..53943b8 100644 --- a/src/mp.h +++ b/src/mp.h @@ -315,9 +315,6 @@ void mp_xnor(const MPNumber *x, const MPNumber *y, int wordlen, MPNumber *z); /* Sets z = boolean NOT for each bit in x and z for word of length 'wordlen' */ void mp_not(const MPNumber *x, int wordlen, MPNumber *z); -/* Sets z = x masked to 'wordlen' bits */ -void mp_mask(const MPNumber *x, int wordlen, MPNumber *z); - /* Sets z = x shifted by 'count' bits. Positive shift increases the value, negative decreases */ void mp_shift(const MPNumber *x, int count, MPNumber *z); -- cgit v1.2.1