commit | a27c28138be78f35f76ea9c13c6354be47097985 | [log] [tgz] |
---|---|---|
author | aappleby@google.com <aappleby@google.com@77a7d1d3-4c08-bdc2-d393-d5859734b01a> | Wed Apr 13 23:23:14 2011 +0000 |
committer | aappleby@google.com <aappleby@google.com@77a7d1d3-4c08-bdc2-d393-d5859734b01a> | Wed Apr 13 23:23:14 2011 +0000 |
tree | 41f069b6c91274a082b0a53466f3921bce02c9f7 | |
parent | 510b8528df1cc38c289abf5e9c3c689e979a6cc3 [diff] [blame] |
Enable all gcc warnings except strict aliasing, fix build issues git-svn-id: http://smhasher.googlecode.com/svn/trunk@133 77a7d1d3-4c08-bdc2-d393-d5859734b01a
diff --git a/Bitvec.cpp b/Bitvec.cpp index 16feaa7..6c74bcc 100644 --- a/Bitvec.cpp +++ b/Bitvec.cpp
@@ -239,7 +239,7 @@ int nbytes = len; int ndwords = nbytes / 4; - uint32_t * k = (uint32_t*)blob; + uint32_t * k = reinterpret_cast<uint32_t*>(blob); if(c == 0) return;