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:
@@ -104,7 +104,7 @@ Standard_CString LDOM_SBuffer::str () const
|
||||
//=======================================================================
|
||||
int LDOM_SBuffer::overflow(int c)
|
||||
{
|
||||
char cc = c;
|
||||
char cc = (char)c;
|
||||
return xsputn(&cc,1);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user