fixed warnings

This commit is contained in:
Jeff Hill
2002-02-06 02:28:27 +00:00
parent 921db3d9f8
commit eb86c4109e
25 changed files with 244 additions and 104 deletions
+2 -2
View File
@@ -136,8 +136,8 @@ epicsUInt16 comQueRecv::popUInt16 ()
}
else {
// split between buffers runs slower
tmp = this->popUInt8() << 8u; // X aCC 818
tmp |= this->popUInt8() << 0u; // X aCC 818
tmp = static_cast <epicsUInt16> ( this->popUInt8() << 8u );
tmp |= static_cast <epicsUInt16> ( this->popUInt8() << 0u );
}
return tmp;
}