diff options
author | rbuj <[email protected]> | 2019-08-29 21:41:37 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-09-01 13:35:28 +0200 |
commit | 14e7c4b7cf120e696d4601f653576d7042bd8e83 (patch) | |
tree | 33e0b206c19b91326e1bb560ead9a281bf70d072 /src/mp.h | |
parent | 6a276e812fd4a9e77db70606c4d4d74815ad19ad (diff) | |
download | mate-calc-14e7c4b7cf120e696d4601f653576d7042bd8e83.tar.bz2 mate-calc-14e7c4b7cf120e696d4601f653576d7042bd8e83.tar.xz |
The function 'mp_mask' is never used
cppcheck --enable=unusedFunction .
[src/mp-binary.c:165]: (style) The function 'mp_mask' is never used.
Diffstat (limited to 'src/mp.h')
-rw-r--r-- | src/mp.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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); |