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:
@@ -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";
|
||||
|
@@ -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";
|
||||
|
@@ -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";
|
||||
|
Reference in New Issue
Block a user