laforge
/
openbts-osmo
Archived
1
0
Fork 0

Remove unused variable in BitVector::hex().

(cherry picked from commit 4ff6edb50ce90db31e66dba3f77e08259929f1ac)
This commit is contained in:
Alexander Chemeris 2010-11-04 18:30:39 +03:00
parent 955f6ca200
commit e8b244c306
1 changed files with 0 additions and 1 deletions

View File

@ -568,7 +568,6 @@ void BitVector::unpack(const unsigned char* src)
void BitVector::hex(ostream& os) const void BitVector::hex(ostream& os) const
{ {
os << std::hex; os << std::hex;
int v=0;
unsigned digits = size()/4; unsigned digits = size()/4;
size_t wp=0; size_t wp=0;
for (unsigned i=0; i<digits; i++) { for (unsigned i=0; i<digits; i++) {