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

0023072: Eliminate compiler warnings (level 3) on Windows / MSVC++

This commit is contained in:
dbv
2012-06-25 11:31:40 +04:00
parent 9d091ec153
commit 60be1f9b1d
47 changed files with 126 additions and 121 deletions

View File

@@ -502,7 +502,7 @@ void GeomTools_Curve2dSet::Dump(Standard_OStream& OS)const
void GeomTools_Curve2dSet::Write(Standard_OStream& OS)const
{
int prec = OS.precision(17);
std::streamsize prec = OS.precision(17);
Standard_Integer i, nbsurf = myMap.Extent();
OS << "Curve2ds "<< nbsurf << "\n";

View File

@@ -519,7 +519,7 @@ void GeomTools_CurveSet::Dump(Standard_OStream& OS)const
void GeomTools_CurveSet::Write(Standard_OStream& OS)const
{
int prec = OS.precision(17);
std::streamsize prec = OS.precision(17);
Standard_Integer i, nbcurve = myMap.Extent();
OS << "Curves "<< nbcurve << "\n";

View File

@@ -639,7 +639,7 @@ void GeomTools_SurfaceSet::Dump(Standard_OStream& OS)const
void GeomTools_SurfaceSet::Write(Standard_OStream& OS)const
{
int prec = OS.precision(17);
std::streamsize prec = OS.precision(17);
Standard_Integer i, nbsurf = myMap.Extent();
OS << "Surfaces "<< nbsurf << "\n";