1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0033671: Coding - GeomTools performance update

Update size of buffer for the brep parsing according standard
This commit is contained in:
dpasukhi 2024-04-14 10:12:01 +00:00
parent 4c8faa5e2d
commit 55b89e095f

View File

@ -101,10 +101,11 @@ void GeomTools::GetReal(Standard_IStream& IS,Standard_Real& theValue)
theValue = 0.;
if (IS.eof())
return;
char buffer[256];
// According IEEE-754 Specification and standard stream parameters
// the most optimal buffer length is 25
char buffer[25];
buffer[0] = '\0';
std::streamsize anOldWide = IS.width(256);
std::streamsize anOldWide = IS.width(25);
IS >> buffer;
IS.width(anOldWide);
theValue = Strtod(buffer, NULL);