add missing std:: namespace to build on Debian 10

This commit is contained in:
wmayer
2019-08-21 16:31:00 +02:00
parent bd4e019f0c
commit fb3eb85586

View File

@@ -284,9 +284,9 @@ static Standard_Boolean BRepTools_Write(const TopoDS_Shape& Sh, const Standard_
{
std::ofstream os;
#if OCC_VERSION_HEX >= 0x060800
OSD_OpenStream(os, File, ios::out);
OSD_OpenStream(os, File, std::ios::out);
#else
os.open(File, ios::out);
os.open(File, std::ios::out);
#endif
if (!os.rdbuf()->is_open()) return Standard_False;