HPUX: Remove all // X aCC comments

These were added to suppress warnings from the HPUX compiler.
This commit is contained in:
Andrew Johnson
2012-04-12 11:13:50 -05:00
parent 0ea56b82b8
commit 2a20d48ca4
85 changed files with 183 additions and 183 deletions

View File

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