1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0024085: Eliminate compiler warning C4706 in MSVC++ with warning level 4

Got rid from most cases which led to Warning c4706
Tiny code style corrections
This commit is contained in:
omy 2013-08-01 12:20:35 +04:00
parent 304c45c83f
commit 773f53f1ec
13 changed files with 82 additions and 121 deletions

View File

@ -18,10 +18,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
// Modified by skv - Fri Mar 4 12:07:34 2005 OCC7966
#include <BRepClass3d_Intersector3d.ixx> #include <BRepClass3d_Intersector3d.ixx>
#include <IntCurveSurface_IntersectionPoint.hxx> #include <IntCurveSurface_IntersectionPoint.hxx>
@ -29,7 +25,6 @@
#include <TopoDS_Face.hxx> #include <TopoDS_Face.hxx>
#include <TopAbs.hxx> #include <TopAbs.hxx>
#include <IntCurveSurface_HInter.hxx> #include <IntCurveSurface_HInter.hxx>
#include <BRepAdaptor_HSurface.hxx> #include <BRepAdaptor_HSurface.hxx>
#include <Geom_Line.hxx> #include <Geom_Line.hxx>
@ -61,18 +56,15 @@ void BRepClass3d_Intersector3d::Perform(const gp_Lin& L,
surface.Initialize(Face,Standard_True); surface.Initialize(Face,Standard_True);
Standard_Boolean IsUPer, IsVPer; const Standard_Boolean IsUPer = surface.IsUPeriodic();
Standard_Real uperiod=0, vperiod=0; const Standard_Boolean IsVPer = surface.IsVPeriodic();
if ((IsUPer = surface.IsUPeriodic())) const Standard_Real uperiod = IsUPer ? surface.UPeriod() : 0.0;
uperiod = surface.UPeriod(); const Standard_Real vperiod = IsVPer ? surface.VPeriod() : 0.0;
if ((IsVPer = surface.IsVPeriodic()))
vperiod = surface.VPeriod();
Standard_Real U1, U2, V1, V2; Standard_Real U1 = surface.FirstUParameter();
U1 = surface.FirstUParameter(); Standard_Real U2 = surface.LastUParameter();
U2 = surface.LastUParameter(); Standard_Real V1 = surface.FirstVParameter();
V1 = surface.FirstVParameter(); Standard_Real V2 = surface.LastVParameter();
V2 = surface.LastVParameter();
//-- //--
Handle(GeomAdaptor_HCurve) HLL = new GeomAdaptor_HCurve(LL); Handle(GeomAdaptor_HCurve) HLL = new GeomAdaptor_HCurve(LL);
@ -140,6 +132,3 @@ void BRepClass3d_Intersector3d::Perform(const gp_Lin& L,
} //-- Loop on Intersection points. } //-- Loop on Intersection points.
} //-- HICS.IsDone() } //-- HICS.IsDone()
} }

View File

@ -18,8 +18,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
// modified by mps (dec 96) ajout des commandes pour l'analyse de continuite
#include <BRepTest.hxx> #include <BRepTest.hxx>
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include <config.h> # include <config.h>
@ -77,11 +75,7 @@
#include <Standard_ErrorHandler.hxx> #include <Standard_ErrorHandler.hxx>
#include <Standard_Failure.hxx> #include <Standard_Failure.hxx>
//#ifdef WNT
#include <stdio.h> #include <stdio.h>
#ifdef WNT
//#define strcasecmp strcmp Already defined
#endif
#ifdef HAVE_STRINGS_H #ifdef HAVE_STRINGS_H
# include <strings.h> # include <strings.h>
#endif #endif
@ -1444,10 +1438,9 @@ static Standard_Integer clintedge(Draw_Interpretor& di,
TopTools_DataMapOfShapeListOfShape mymap; TopTools_DataMapOfShapeListOfShape mymap;
TopOpeBRepTool_PurgeInternalEdges mypurgealgo(S); TopOpeBRepTool_PurgeInternalEdges mypurgealgo(S);
Standard_Integer nbedges; Standard_Integer nbedges = mypurgealgo.NbEdges();
if (nbedges > 0)
if ((nbedges = mypurgealgo.NbEdges())) { {
//cout<<nbedges<<" internal (or external) edges to be removed"<<endl; //cout<<nbedges<<" internal (or external) edges to be removed"<<endl;
di<<nbedges<<" internal (or external) edges to be removed"<<"\n"; di<<nbedges<<" internal (or external) edges to be removed"<<"\n";

View File

@ -425,12 +425,10 @@ TopAbs_State BRepTopAdaptor_FClass2d::Perform(const gp_Pnt2d& _Puv,
Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface(); Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface();
surf->ChangeSurface().Initialize( Face, Standard_False ); surf->ChangeSurface().Initialize( Face, Standard_False );
Standard_Boolean IsUPer, IsVPer; const Standard_Boolean IsUPer = surf->IsUPeriodic();
Standard_Real uperiod=0, vperiod=0; const Standard_Boolean IsVPer = surf->IsVPeriodic();
if ((IsUPer = surf->IsUPeriodic())) const Standard_Real uperiod = IsUPer ? surf->UPeriod() : 0.0;
uperiod = surf->UPeriod(); const Standard_Real vperiod = IsVPer ? surf->VPeriod() : 0.0;
if ((IsVPer = surf->IsVPeriodic()))
vperiod = surf->VPeriod();
TopAbs_State Status = TopAbs_UNKNOWN; TopAbs_State Status = TopAbs_UNKNOWN;
Standard_Boolean urecadre = Standard_False, vrecadre = Standard_False; Standard_Boolean urecadre = Standard_False, vrecadre = Standard_False;
@ -561,12 +559,10 @@ TopAbs_State BRepTopAdaptor_FClass2d::TestOnRestriction(const gp_Pnt2d& _Puv,
Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface(); Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface();
surf->ChangeSurface().Initialize( Face, Standard_False ); surf->ChangeSurface().Initialize( Face, Standard_False );
Standard_Boolean IsUPer, IsVPer; const Standard_Boolean IsUPer = surf->IsUPeriodic();
Standard_Real uperiod=0, vperiod=0; const Standard_Boolean IsVPer = surf->IsVPeriodic();
if ((IsUPer = surf->IsUPeriodic())) const Standard_Real uperiod = IsUPer ? surf->UPeriod() : 0.0;
uperiod = surf->UPeriod(); const Standard_Real vperiod = IsVPer ? surf->VPeriod() : 0.0;
if ((IsVPer = surf->IsVPeriodic()))
vperiod = surf->VPeriod();
TopAbs_State Status = TopAbs_UNKNOWN; TopAbs_State Status = TopAbs_UNKNOWN;
Standard_Boolean urecadre = Standard_False, vrecadre = Standard_False; Standard_Boolean urecadre = Standard_False, vrecadre = Standard_False;

View File

@ -2024,11 +2024,8 @@ Standard_Boolean Init_Appli(HINSTANCE hInst,
** Enter the application message-polling loop. This is the anchor for ** Enter the application message-polling loop. This is the anchor for
** the application. ** the application.
*/ */
if(Draw_IsConsoleSubsystem) hWndFrame = !Draw_IsConsoleSubsystem ? CreateAppWindow (hInst) : NULL;
if (hWndFrame != NULL)
hWndFrame = NULL;
else if (hWndFrame = CreateAppWindow(hInst))
{ {
ShowWindow(hWndFrame,nShow); ShowWindow(hWndFrame,nShow);
UpdateWindow(hWndFrame); UpdateWindow(hWndFrame);

View File

@ -18,12 +18,8 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#ifdef WNT #ifdef WNT
#include <windows.h> #include <windows.h>
#include <DrawRessource.h> #include <DrawRessource.h>
#include <init.h> #include <init.h>
@ -80,11 +76,12 @@ LRESULT APIENTRY WndProc(HWND hWndFrame, UINT wMsg, WPARAM wParam, LPARAM lParam
\*--------------------------------------------------------------------------*/ \*--------------------------------------------------------------------------*/
BOOL CreateProc(HWND hWndFrame) BOOL CreateProc(HWND hWndFrame)
{ {
HWND hWnd; HWND hWnd = CreateMDIClientWindow (hWndFrame);
if (hWnd != NULL)
// Save hWnd in the main window in extra memory in 0 {
if (hWnd = CreateMDIClientWindow(hWndFrame)) // Save hWnd in the main window in extra memory in 0
SetWindowLong(hWndFrame, CLIENTWND, (LONG)hWnd); SetWindowLong(hWndFrame, CLIENTWND, (LONG)hWnd);
}
return(TRUE); return(TRUE);
} }
@ -96,30 +93,30 @@ BOOL CreateProc(HWND hWndFrame)
\*--------------------------------------------------------------------------*/ \*--------------------------------------------------------------------------*/
BOOL CommandProc(HWND hWndFrame, WPARAM wParam, LPARAM /*lParam*/) BOOL CommandProc(HWND hWndFrame, WPARAM wParam, LPARAM /*lParam*/)
{ {
HWND hWndClient; // Handle on window MDI // Handle on window MDI
HWND hWndActive; HWND hWndClient = (HWND)GetWindowLong (hWndFrame, CLIENTWND);
hWndClient = (HWND)GetWindowLong(hWndFrame, CLIENTWND);
switch (LOWORD(wParam)) switch (LOWORD(wParam))
{ {
case IDM_WINDOW_NEXT : case IDM_WINDOW_NEXT :
if(hWndClient = (HWND)GetWindowLong(hWndFrame, CLIENTWND)) if(hWndClient)
hWndActive = (HWND)SendMessage(hWndClient, WM_MDIGETACTIVE, 0, 0l); {
SendMessage(hWndClient, WM_MDINEXT, (WPARAM)hWndActive, 0l); HWND hWndActive = (HWND)SendMessage(hWndClient, WM_MDIGETACTIVE, 0, 0l);
SendMessage(hWndClient, WM_MDINEXT, (WPARAM)hWndActive, 0l);
}
break; break;
case IDM_WINDOW_CASCADE : case IDM_WINDOW_CASCADE :
if(hWndClient = (HWND)GetWindowLong(hWndFrame, CLIENTWND)) if(hWndClient)
SendMessage(hWndClient, WM_MDICASCADE, 0, 0l); SendMessage(hWndClient, WM_MDICASCADE, 0, 0l);
break; break;
case IDM_WINDOW_TILEHOR : case IDM_WINDOW_TILEHOR :
if(hWndClient = (HWND)GetWindowLong(hWndFrame, CLIENTWND)) if(hWndClient)
SendMessage(hWndClient, WM_MDITILE, MDITILE_HORIZONTAL, 0l); SendMessage(hWndClient, WM_MDITILE, MDITILE_HORIZONTAL, 0l);
break; break;
case IDM_WINDOW_TILEVERT : case IDM_WINDOW_TILEVERT :
if(hWndClient = (HWND)GetWindowLong(hWndFrame, CLIENTWND)) if(hWndClient)
SendMessage(hWndClient, WM_MDITILE, MDITILE_VERTICAL, 0l); SendMessage(hWndClient, WM_MDITILE, MDITILE_VERTICAL, 0l);
break; break;

View File

@ -206,7 +206,8 @@ void Extrema_GExtCC::Perform()
//analytical case - one curve is always a line //analytical case - one curve is always a line
Standard_Integer anInd1 = 0, anInd2 = 1; Standard_Integer anInd1 = 0, anInd2 = 1;
GeomAbs_CurveType aType2 = type2; GeomAbs_CurveType aType2 = type2;
if (inverse = (type1 > type2)) { inverse = (type1 > type2);
if (inverse) {
//algorithm uses inverse order of arguments //algorithm uses inverse order of arguments
anInd1 = 1; anInd1 = 1;
anInd2 = 0; anInd2 = 0;

View File

@ -59,7 +59,8 @@ Geom2dGcc_Lin2dTanObl::
gp_Circ2d c1(CCC1->Circ2d()); gp_Circ2d c1(CCC1->Circ2d());
GccEnt_QualifiedCirc Qc1=GccEnt_QualifiedCirc(c1,Qualified1.Qualifier()); GccEnt_QualifiedCirc Qc1=GccEnt_QualifiedCirc(c1,Qualified1.Qualifier());
GccAna_Lin2dTanObl Lin(Qc1,TheLine,Angle); GccAna_Lin2dTanObl Lin(Qc1,TheLine,Angle);
if((WellDone = Lin.IsDone())) { WellDone = Lin.IsDone();
if(WellDone) {
NbrSol = Lin.NbSolutions(); NbrSol = Lin.NbSolutions();
for (Standard_Integer i = 1 ; i <= NbrSol ; i++) { for (Standard_Integer i = 1 ; i <= NbrSol ; i++) {
linsol(i) = Lin.ThisSolution(i); linsol(i) = Lin.ThisSolution(i);
@ -123,7 +124,8 @@ Geom2dGcc_Lin2dTanObl::
gp_Circ2d c1(CCC1->Circ2d()); gp_Circ2d c1(CCC1->Circ2d());
GccEnt_QualifiedCirc Qc1=GccEnt_QualifiedCirc(c1,Qualified1.Qualifier()); GccEnt_QualifiedCirc Qc1=GccEnt_QualifiedCirc(c1,Qualified1.Qualifier());
GccAna_Lin2dTanObl Lin(Qc1,TheLine,Angle); GccAna_Lin2dTanObl Lin(Qc1,TheLine,Angle);
if((WellDone = Lin.IsDone())) { WellDone = Lin.IsDone();
if(WellDone) {
NbrSol = Lin.NbSolutions(); NbrSol = Lin.NbSolutions();
for (Standard_Integer i = 1 ; i <= NbrSol ; i++) { for (Standard_Integer i = 1 ; i <= NbrSol ; i++) {
linsol(i) = Lin.ThisSolution(i); linsol(i) = Lin.ThisSolution(i);
@ -136,7 +138,8 @@ Geom2dGcc_Lin2dTanObl::
else { else {
Geom2dGcc_MyQCurve Qc1(C1,Qualified1.Qualifier()); Geom2dGcc_MyQCurve Qc1(C1,Qualified1.Qualifier());
Geom2dGcc_MyL2dTanObl Lin(Qc1,TheLine,TolAng,Param1,Angle); Geom2dGcc_MyL2dTanObl Lin(Qc1,TheLine,TolAng,Param1,Angle);
if((WellDone = Lin.IsDone())) { WellDone = Lin.IsDone();
if(WellDone) {
linsol(1) = Lin.ThisSolution(); linsol(1) = Lin.ThisSolution();
Lin.Tangency1(par1sol(1),pararg1(1),pnttg1sol(1)); Lin.Tangency1(par1sol(1),pararg1(1),pnttg1sol(1));
Lin.Intersection2(par2sol(1),pararg2(1),pntint2sol(1)); Lin.Intersection2(par2sol(1),pararg2(1),pntint2sol(1));

View File

@ -1354,9 +1354,8 @@ void GeomPlate_BuildPlateSurface::ComputeSurfInit()
myInitOrder->SetValue( i, i ); myInitOrder->SetValue( i, i );
} }
Standard_Boolean CourbeJoint=Standard_False; Standard_Boolean CourbeJoint = (NTLinCont != 0) && CourbeJointive (myTol3d);
if (CourbeJoint && IsOrderG1())
if (NTLinCont != 0 && (CourbeJoint = CourbeJointive( myTol3d )) && IsOrderG1())
{ {
nopt = 3; nopt = 3;
// Tableau contenant le nuage de point pour le calcul du plan // Tableau contenant le nuage de point pour le calcul du plan

View File

@ -528,40 +528,30 @@ IntTools_FClass2d::IntTools_FClass2d()
TopAbs_State IntTools_FClass2d::Perform(const gp_Pnt2d& _Puv, TopAbs_State IntTools_FClass2d::Perform(const gp_Pnt2d& _Puv,
const Standard_Boolean RecadreOnPeriodic) const const Standard_Boolean RecadreOnPeriodic) const
{ {
Standard_Integer dedans, nbtabclass; Standard_Integer nbtabclass = TabClass.Length();
if (nbtabclass == 0)
nbtabclass = TabClass.Length(); {
return TopAbs_IN;
if(nbtabclass==0) {
return(TopAbs_IN);
} }
//-- U1 is the First Param and U2 is in this case U1+Period
Standard_Real u, v, uu, vv, uperiod, vperiod;
Standard_Boolean IsUPer, IsVPer, urecadre, vrecadre;
TopAbs_State Status= TopAbs_UNKNOWN;
u=_Puv.X(); //-- U1 is the First Param and U2 is in this case U1+Period
v=_Puv.Y(); Standard_Real u = _Puv.X();
uu = u, vv = v; Standard_Real v = _Puv.Y();
Standard_Real uu = u;
Standard_Real vv = v;
TopAbs_State Status = TopAbs_UNKNOWN;
Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface(); Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface();
surf->ChangeSurface().Initialize( Face, Standard_False ); surf->ChangeSurface().Initialize( Face, Standard_False );
uperiod=0., vperiod=0.; const Standard_Boolean IsUPer = surf->IsUPeriodic();
IsUPer = surf->IsUPeriodic(); const Standard_Boolean IsVPer = surf->IsVPeriodic();
IsVPer = surf->IsVPeriodic(); const Standard_Real uperiod = IsUPer ? surf->UPeriod() : 0.0;
const Standard_Real vperiod = IsVPer ? surf->VPeriod() : 0.0;
if (IsUPer){ Standard_Boolean urecadre = Standard_False;
uperiod = surf->UPeriod(); Standard_Boolean vrecadre = Standard_False;
} Standard_Integer dedans = 1;
if (IsVPer){
vperiod = surf->VPeriod();
}
urecadre = Standard_False;
vrecadre = Standard_False;
if (RecadreOnPeriodic) { if (RecadreOnPeriodic) {
@ -683,31 +673,27 @@ IntTools_FClass2d::IntTools_FClass2d()
const Standard_Real Tol, const Standard_Real Tol,
const Standard_Boolean RecadreOnPeriodic) const const Standard_Boolean RecadreOnPeriodic) const
{ {
Standard_Integer nbtabclass = TabClass.Length();
Standard_Integer dedans, nbtabclass; if (nbtabclass == 0)
{
nbtabclass = TabClass.Length(); return TopAbs_IN;
if(nbtabclass==0) {
return(TopAbs_IN);
} }
//-- U1 is the First Param and U2 in this case is U1+Period //-- U1 is the First Param and U2 in this case is U1+Period
Standard_Real u=_Puv.X(); Standard_Real u=_Puv.X();
Standard_Real v=_Puv.Y(); Standard_Real v=_Puv.Y();
Standard_Real uu = u, vv = v; Standard_Real uu = u, vv = v;
Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface(); Handle(BRepAdaptor_HSurface) surf = new BRepAdaptor_HSurface();
surf->ChangeSurface().Initialize( Face, Standard_False ); surf->ChangeSurface().Initialize( Face, Standard_False );
Standard_Boolean IsUPer, IsVPer; const Standard_Boolean IsUPer = surf->IsUPeriodic();
Standard_Real uperiod=0, vperiod=0; const Standard_Boolean IsVPer = surf->IsVPeriodic();
if ((IsUPer = surf->IsUPeriodic())) const Standard_Real uperiod = IsUPer ? surf->UPeriod() : 0.0;
uperiod = surf->UPeriod(); const Standard_Real vperiod = IsVPer ? surf->VPeriod() : 0.0;
if ((IsVPer = surf->IsVPeriodic()))
vperiod = surf->VPeriod();
TopAbs_State Status = TopAbs_UNKNOWN; TopAbs_State Status = TopAbs_UNKNOWN;
Standard_Boolean urecadre = Standard_False, vrecadre = Standard_False; Standard_Boolean urecadre = Standard_False, vrecadre = Standard_False;
Standard_Integer dedans = 1;
if (RecadreOnPeriodic) if (RecadreOnPeriodic)
{ {
if (IsUPer) if (IsUPer)

View File

@ -30,13 +30,13 @@ File OpenGl_telem_view :
static void static void
EvalViewMappingMatrix( tel_view_mapping mapping /* View Mapping */, EvalViewMappingMatrix( tel_view_mapping mapping /* View Mapping */,
Tint *error_ind /* Out: Error Indicator */, Tint* error_ind /* Out: Error Indicator */,
Tmatrix3 mat /* Out: Mapping Matrix * */, Tmatrix3 mat /* Out: Mapping Matrix * */,
Tint flag, Tint flag,
Tfloat cx, Tfloat cx,
Tfloat cy, Tfloat cy,
Tint /*clip_flag*/, Tint /*clip_flag*/,
Tlimit3 */*clip_limit*/ Tlimit3* /*clip_limit*/
) )
{ {
Tfloat gx, gy, xsf, ysf, zsf; Tfloat gx, gy, xsf, ysf, zsf;

View File

@ -224,7 +224,7 @@ static Standard_Integer OCC22980 (Draw_Interpretor& di, Standard_Integer /*argc*
#include <TDF_Label.hxx> #include <TDF_Label.hxx>
#include <TDataStd_Name.hxx> #include <TDataStd_Name.hxx>
static Standard_Integer OCC23595 (Draw_Interpretor& di, Standard_Integer /*argc*/, const char **/*argv*/) static Standard_Integer OCC23595 (Draw_Interpretor& di, Standard_Integer /*argc*/, const char** /*argv*/)
{ {
const Handle(TDocStd_Application)& anApp = XCAFApp_Application::GetApplication(); const Handle(TDocStd_Application)& anApp = XCAFApp_Application::GetApplication();
Handle(TDocStd_Document) aDoc; Handle(TDocStd_Document) aDoc;

View File

@ -558,8 +558,8 @@ TCollection_AsciiString ViewerTest::ViewerInit (const Standard_Integer thePxLeft
#endif #endif
TCollection_AsciiString anOverlappedViewId(""); TCollection_AsciiString anOverlappedViewId("");
Standard_Boolean isOverlapped = Standard_False;
while (isOverlapped = IsWindowOverlapped (aPxLeft, aPxTop, aPxLeft + aPxWidth, aPxTop + aPxHeight, anOverlappedViewId)) while (IsWindowOverlapped (aPxLeft, aPxTop, aPxLeft + aPxWidth, aPxTop + aPxHeight, anOverlappedViewId))
{ {
ViewerTest_myViews.Find1(anOverlappedViewId)->Window()->Position (aLeft, aTop, aRight, aBottom); ViewerTest_myViews.Find1(anOverlappedViewId)->Window()->Position (aLeft, aTop, aRight, aBottom);

View File

@ -3588,8 +3588,8 @@ void Visual3d_View :: SetComputedMode ( const Standard_Boolean aMode )
Visual3d_TypeOfAnswer Answer; Visual3d_TypeOfAnswer Answer;
Standard_Integer StructId; Standard_Integer StructId;
Standard_Integer i = MyDisplayedStructure.Extent (); Standard_Integer i = MyDisplayedStructure.Extent ();
ComputedModeIsActive = aMode;
if ( !( ComputedModeIsActive = aMode ) ) { if (!ComputedModeIsActive) {
while ( S1Iterator.More () ) { while ( S1Iterator.More () ) {