mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-10 07:56:09 +00:00
couple of ICC warnings fixed
This commit is contained in:
parent
8782b4d696
commit
74a3907be2
@ -52,7 +52,7 @@ namespace zmq
|
|||||||
|
|
||||||
// The destructor doesn't have to be virtual. It is mad virtual
|
// The destructor doesn't have to be virtual. It is mad virtual
|
||||||
// just to keep ICC and code checking tools from complaining.
|
// just to keep ICC and code checking tools from complaining.
|
||||||
inline ~encoder_t ()
|
inline virtual ~encoder_t ()
|
||||||
{
|
{
|
||||||
free (buf);
|
free (buf);
|
||||||
}
|
}
|
||||||
|
@ -190,8 +190,10 @@ unsigned char zmq::uuid_t::convert_byte (const char *hexa_)
|
|||||||
byte = *hexa_ - 'A' + 10;
|
byte = *hexa_ - 'A' + 10;
|
||||||
else if (*hexa_ >= 'a' && *hexa_ <= 'f')
|
else if (*hexa_ >= 'a' && *hexa_ <= 'f')
|
||||||
byte = *hexa_ - 'a' + 10;
|
byte = *hexa_ - 'a' + 10;
|
||||||
else
|
else {
|
||||||
zmq_assert (false);
|
zmq_assert (false);
|
||||||
|
byte = 0;
|
||||||
|
}
|
||||||
|
|
||||||
byte *= 16;
|
byte *= 16;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user