1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

OCC22355 Avoid annoying warnings in NCollection_SparseArray.hxx on 64-bit Linux with Intel compiler

This commit is contained in:
ABV 2011-05-19 10:52:04 +00:00 committed by bugmaster
parent 92d1589b7f
commit fb9d45d0e6

View File

@ -100,8 +100,8 @@ private:
{
Cell* abyte = Bits + i / BitsPerCell();
Cell amask = (Cell)( '\1' << ( i % BitsPerCell() ) );
Cell anold = ( *abyte & amask );
*abyte |= amask;
Cell anold = (Cell)( *abyte & amask );
*abyte = (Cell)( *abyte | amask );
return ! anold;
}
@ -110,7 +110,7 @@ private:
{
Cell* abyte = Bits + i / BitsPerCell();
Cell amask = (Cell)( '\1' << ( i % BitsPerCell() ) );
return ( *abyte & amask );
return (Cell)( *abyte & amask );
}
//! Unset bit for i-th item; returns non-null if that bit
@ -119,8 +119,8 @@ private:
{
Cell* abyte = Bits + i / BitsPerCell();
Cell amask = (Cell)( '\1' << ( i % BitsPerCell() ) );
Cell anold = ( *abyte & amask );
*abyte &= ~amask;
Cell anold = (Cell)( *abyte & amask );
*abyte = (Cell)( *abyte & ~amask );
return anold;
}