1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0033602: Data Exchange, Step - Carriage return removing

Carriage removing integrated
This commit is contained in:
dpasukhi
2024-02-15 15:43:01 +00:00
parent c7354b8f81
commit 2679bcb623

View File

@@ -299,7 +299,7 @@ void StepData_StepReaderData::cleanText(const Handle(TCollection_HAsciiString)&
}
}
}
if (aChar == '\n')
if (aChar == '\n' || aChar == '\r')
{
aResString.SetValue(aSetCharInd, aResString.ToExtString() + aStringInd);
aResStringSize--;