mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +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:
@@ -793,7 +793,7 @@ Standard_Boolean Interface_InterfaceModel::SetCategoryNumber
|
||||
c->SetValue(i,thecategory->Value(i));
|
||||
thecategory = c;
|
||||
}
|
||||
Standard_Character cval = (val + 32);
|
||||
Standard_Character cval = (Standard_Character)(val + 32);
|
||||
thecategory->SetValue(num,cval);
|
||||
return Standard_True;
|
||||
}
|
||||
|
Reference in New Issue
Block a user