mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-29 14:00:49 +03:00
0026922: Huge performance issue writing data to the output stream
Test case for issue CR26922 Correction of literal (char to string)
This commit is contained in:
@@ -24,12 +24,12 @@ Vrml_Instancing::Vrml_Instancing(const TCollection_AsciiString& aString)
|
||||
|
||||
Standard_OStream& Vrml_Instancing::DEF(Standard_OStream& anOStream) const
|
||||
{
|
||||
anOStream << "DEF " << myName << endl;
|
||||
anOStream << "DEF " << myName << "\n";
|
||||
return anOStream;
|
||||
}
|
||||
|
||||
Standard_OStream& Vrml_Instancing::USE(Standard_OStream& anOStream) const
|
||||
{
|
||||
anOStream << "USE " << myName << endl;
|
||||
anOStream << "USE " << myName << "\n";
|
||||
return anOStream;
|
||||
}
|
||||
|
Reference in New Issue
Block a user