Fix many warnings about implicit integer conversions when compiling for 64 bits.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2015-02-20 01:20:08 -04:00
parent 85de3c41fb
commit ebc68023a7
39 changed files with 114 additions and 114 deletions
+1 -1
View File
@@ -176,7 +176,7 @@ Variant *Channel::peek()
int Channel::getCount()
{
Lock l(mutex);
return queue.size();
return (int) queue.size();
}
void Channel::clear()