diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2018-06-15 18:27:48 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-18 10:16:19 -0700 |
commit | 44301d2b76bd32074fcdbf97c51264ca2149c513 (patch) | |
tree | e3ad7f1fbdf6ab9936edff3d0fba09e8aa753494 /ewah/ewok.h | |
parent | ewah_bitmap: delete unused 'ewah_and_not()' (diff) | |
download | tgif-44301d2b76bd32074fcdbf97c51264ca2149c513.tar.xz |
ewah_bitmap: delete unused 'ewah_not()'
Reported-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ewah/ewok.h')
-rw-r--r-- | ewah/ewok.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ewah/ewok.h b/ewah/ewok.h index 0ee0c70217..a603fa3dd8 100644 --- a/ewah/ewok.h +++ b/ewah/ewok.h @@ -96,13 +96,6 @@ ssize_t ewah_read_mmap(struct ewah_bitmap *self, const void *map, size_t len); uint32_t ewah_checksum(struct ewah_bitmap *self); /** - * Logical not (bitwise negation) in-place on the bitmap - * - * This operation is linear time based on the size of the bitmap. - */ -void ewah_not(struct ewah_bitmap *self); - -/** * Call the given callback with the position of every single bit * that has been set on the bitmap. * |