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

0030855: Coding - New warnings within Standard_ReadLineBuffer after integration fix for 0030830

Added missing cast.
This commit is contained in:
kgv 2019-07-28 12:24:53 +03:00
parent 59515ca600
commit f6b4e578cd

View File

@ -172,7 +172,7 @@ protected:
size_t theLen, size_t theLen,
size_t& theReadLen) size_t& theReadLen)
{ {
theReadLen = theStream.read (myReadBuffer.data(), theLen).gcount(); theReadLen = (size_t )theStream.read (myReadBuffer.data(), theLen).gcount();
return !theStream.bad(); return !theStream.bad();
} }