mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-13 15:19:13 +08:00
0030855: Coding - New warnings within Standard_ReadLineBuffer after integration fix for 0030830
Added missing cast.
This commit is contained in:
@@ -172,7 +172,7 @@ protected:
|
||||
size_t theLen,
|
||||
size_t& theReadLen)
|
||||
{
|
||||
theReadLen = theStream.read (myReadBuffer.data(), theLen).gcount();
|
||||
theReadLen = (size_t )theStream.read (myReadBuffer.data(), theLen).gcount();
|
||||
return !theStream.bad();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user