]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/commitdiff
Silence a constness warning in bv_zero()
authorVincent Pit <vince@profvince.com>
Sat, 23 Apr 2011 14:29:39 +0000 (16:29 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 23 Apr 2011 14:29:39 +0000 (16:29 +0200)
bitvect.h

index 51a7d7893aea84f8bcbc42f58b5074749d3b3861..870d65b49459a1f9f06762d6ee6c4591c6fb94d5 100644 (file)
--- a/bitvect.h
+++ b/bitvect.h
@@ -339,7 +339,8 @@ INLINE_DECLARE(int bv_zero(const void *bv_, size_t s, size_t l))
 #ifdef INLINE_DEFINE
 {
  size_t o;
- T mask, *bv = (T *) bv_, *end;
+ T mask;
+ const T *bv = (const T *) bv_, *end;
 
  bv += s / BITS(T);
  o   = s % BITS(T);