Suppressed HPUX warnings.

This commit is contained in:
Ralph Lange
2002-11-07 17:18:27 +00:00
parent 89c4e229da
commit d7fe8efef6
15 changed files with 16 additions and 16 deletions

View File

@@ -159,8 +159,8 @@ epicsUInt32 comQueRecv::multiBufferPopUInt32 ()
unsigned byte3 = this->popUInt8();
unsigned byte4 = this->popUInt8();
tmp = static_cast <epicsUInt32>
( ( byte1 << 24u ) | ( byte2 << 16u ) |
( byte3 << 8u ) | byte4 ); //X aCC 392
( ( byte1 << 24u ) | ( byte2 << 16u ) | //X aCC 392
( byte3 << 8u ) | byte4 );
}
else {
comBuf::throwInsufficentBytesException ();