mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
0024087: Eliminate compiler warning C4244 in MSVC++ with warning level 4
Most of the compiler warnings C4244 have been eliminated.
This commit is contained in:
@@ -238,7 +238,7 @@ void BinTools_LocationSet::Read(Standard_IStream& IS)
|
||||
OCC_CATCH_SIGNALS
|
||||
for (i = 1; i <= nbLoc; i++) {
|
||||
|
||||
const Standard_Byte aTypLoc = IS.get();
|
||||
const Standard_Byte aTypLoc = (Standard_Byte)IS.get();
|
||||
if (aTypLoc == 1) {
|
||||
IS >> T;
|
||||
L = T;
|
||||
|
Reference in New Issue
Block a user