1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0030611: Coding Rules - eliminate GCC compiler warnings -Wcatch-value

Add missing const& to catch statements.
This commit is contained in:
kgv 2019-03-31 23:38:14 +03:00
parent f996b507d8
commit a738b534ca
106 changed files with 210 additions and 213 deletions

View File

@ -81,7 +81,7 @@ myIsXYZAxis(Standard_True)
Standard_Real aLength; Standard_Real aLength;
try { try {
aLength = UnitsAPI::AnyToLS(100. ,"mm"); aLength = UnitsAPI::AnyToLS(100. ,"mm");
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
aLength = 0.1; aLength = 0.1;
} }
DA->SetAxisLength(aLength,aLength,aLength); DA->SetAxisLength(aLength,aLength,aLength);

View File

@ -352,7 +352,7 @@ TCollection_ExtendedString AIS_Dimension::GetValueString (Standard_Real& theWidt
Handle(Font_FTFont) aFont = new Font_FTFont(); Handle(Font_FTFont) aFont = new Font_FTFont();
aFont->Init (aTextAspect->Aspect()->Font().ToCString(), aFont->Init (aTextAspect->Aspect()->Font().ToCString(),
aTextAspect->Aspect()->GetTextFontAspect(), aTextAspect->Aspect()->GetTextFontAspect(),
(const unsigned int)aTextAspect->Height(), (unsigned int )aTextAspect->Height(),
THE_2D_TEXT_RESOLUTION); THE_2D_TEXT_RESOLUTION);
for (NCollection_Utf8Iter anIter = anUTFString.Iterator(); *anIter != 0; ) for (NCollection_Utf8Iter anIter = anUTFString.Iterator(); *anIter != 0; )

View File

@ -425,7 +425,7 @@ void AIS_TexturedShape::Compute (const Handle(PrsMgr_PresentationManager3d)& /*t
updateAttributes (thePrs); updateAttributes (thePrs);
} }
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
std::cout << "AIS_TexturedShape::Compute() in ShadingMode failed \n"; std::cout << "AIS_TexturedShape::Compute() in ShadingMode failed \n";

View File

@ -487,7 +487,7 @@ void AppBlend_AppSurf::InternalPerform(const Handle(TheLine)& Lin,
try { try {
Variation.Approximate(); Variation.Approximate();
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
return; return;
} }

View File

@ -232,7 +232,7 @@ void BOPAlgo_ArgumentAnalyzer::Perform()
TestCurveOnSurface(); TestCurveOnSurface();
} }
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
BOPAlgo_CheckResult aResult; BOPAlgo_CheckResult aResult;
aResult.SetCheckStatus(BOPAlgo_CheckUnknown); aResult.SetCheckStatus(BOPAlgo_CheckUnknown);
myResult.Append(aResult); myResult.Append(aResult);

View File

@ -233,7 +233,7 @@ void BOPAlgo_Builder::PerformInternal(const BOPAlgo_PaveFiller& theFiller)
PerformInternal1(theFiller); PerformInternal1(theFiller);
} }
// //
catch (Standard_Failure) { catch (Standard_Failure const&) {
AddError (new BOPAlgo_AlertBuilderFailed); AddError (new BOPAlgo_AlertBuilderFailed);
} }
} }

View File

@ -206,7 +206,7 @@ void BOPAlgo_CheckerSI::Perform()
PostTreat(); PostTreat();
} }
// //
catch (Standard_Failure) { catch (Standard_Failure const&) {
AddError (new BOPAlgo_AlertIntersectionFailed); AddError (new BOPAlgo_AlertIntersectionFailed);
} }
} }

View File

@ -223,7 +223,7 @@ void BOPAlgo_PaveFiller::Perform()
PerformInternal(); PerformInternal();
} }
// //
catch (Standard_Failure) { catch (Standard_Failure const&) {
AddError (new BOPAlgo_AlertIntersectionFailed); AddError (new BOPAlgo_AlertIntersectionFailed);
} }
} }

View File

@ -118,7 +118,7 @@ class BOPAlgo_VertexEdge : public BOPAlgo_Algo {
myFlag=myContext->ComputeVE (myV, myE, myT, myTolVNew, myFuzzyValue); myFlag=myContext->ComputeVE (myV, myE, myT, myTolVNew, myFuzzyValue);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
AddError(new BOPAlgo_AlertIntersectionFailed); AddError(new BOPAlgo_AlertIntersectionFailed);
} }

View File

@ -102,7 +102,7 @@ class BOPAlgo_EdgeEdge :
IntTools_EdgeEdge::Perform(); IntTools_EdgeEdge::Perform();
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
AddError(new BOPAlgo_AlertIntersectionFailed); AddError(new BOPAlgo_AlertIntersectionFailed);
} }

View File

@ -114,7 +114,7 @@ class BOPAlgo_VertexFace : public BOPAlgo_Algo {
myFlag=myContext->ComputeVF(myV, myF, myT1, myT2, myTolVNew, myFuzzyValue); myFlag=myContext->ComputeVF(myV, myF, myT1, myT2, myTolVNew, myFuzzyValue);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
AddError(new BOPAlgo_AlertIntersectionFailed); AddError(new BOPAlgo_AlertIntersectionFailed);
} }

View File

@ -113,7 +113,7 @@ class BOPAlgo_EdgeFace :
IntTools_EdgeFace::Perform(); IntTools_EdgeFace::Perform();
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
AddError(new BOPAlgo_AlertIntersectionFailed); AddError(new BOPAlgo_AlertIntersectionFailed);
} }

View File

@ -150,7 +150,7 @@ class BOPAlgo_FaceFace :
IntTools_FaceFace::Perform(myF1, myF2); IntTools_FaceFace::Perform(myF1, myF2);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
AddError(new BOPAlgo_AlertIntersectionFailed); AddError(new BOPAlgo_AlertIntersectionFailed);
} }

View File

@ -301,7 +301,7 @@ class BOPAlgo_MPC : public BOPAlgo_Algo {
UpdateVertices(aCopyE, myF); UpdateVertices(aCopyE, myF);
} }
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
AddError(new BOPAlgo_AlertBuildingPCurveFailed(TopoDS_Shape())); AddError(new BOPAlgo_AlertBuildingPCurveFailed(TopoDS_Shape()));
} }

View File

@ -155,7 +155,7 @@ void BOPAlgo_RemoveFeatures::Perform()
// Post treatment // Post treatment
PostTreat(); PostTreat();
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
AddError(new BOPAlgo_AlertRemoveFeaturesFailed()); AddError(new BOPAlgo_AlertRemoveFeaturesFailed());
} }
@ -354,7 +354,7 @@ public: //! @name Perform the operation
// Trim the extended faces // Trim the extended faces
TrimExtendedFaces(aFaceExtFaceMap); TrimExtendedFaces(aFaceExtFaceMap);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
// Make sure the warning will be given on the higher level // Make sure the warning will be given on the higher level
myHasAdjacentFaces = Standard_True; myHasAdjacentFaces = Standard_True;

View File

@ -714,7 +714,7 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires,
aBB.Add(aRFaces, aFSp); aBB.Add(aRFaces, aFSp);
} }
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
continue; continue;
} }
} }

View File

@ -136,7 +136,7 @@ Standard_Integer BOPTools_AlgoTools2D::AttachExistingPCurve
BRepLib::SameParameter(aE1T); BRepLib::SameParameter(aE1T);
BRepLib::SameRange(aE1T); BRepLib::SameRange(aE1T);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
iRet = 6; iRet = 6;
return iRet; return iRet;

View File

@ -326,7 +326,7 @@ void BRepBuilderAPI_FastSewing::Perform(void)
myResShape = aQuilt.Shells(); myResShape = aQuilt.Shells();
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
SetStatus(FS_Exception); SetStatus(FS_Exception);
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG

View File

@ -903,7 +903,7 @@ TopoDS_Edge BRepBuilderAPI_Sewing::SameParameterEdge(const TopoDS_Edge& edgeFirs
} }
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
isSamePar = Standard_False; isSamePar = Standard_False;
} }
@ -4744,7 +4744,7 @@ void BRepBuilderAPI_Sewing::SameParameterShape()
BRepLib::SameParameter(sec, BRep_Tool::Tolerance(sec)); BRepLib::SameParameter(sec, BRep_Tool::Tolerance(sec));
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "Fail: BRepBuilderAPI_Sewing::SameParameterShape exception in BRepLib::SameParameter" << endl; cout << "Fail: BRepBuilderAPI_Sewing::SameParameterShape exception in BRepLib::SameParameter" << endl;
#endif #endif

View File

@ -2297,7 +2297,7 @@ void BRepLib::EncodeRegularity(TopoDS_Edge& E,
B.Continuity(E,F1,F2,aCont); B.Continuity(E,F1,F2,aCont);
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "Failure: Exception in BRepLib::EncodeRegularity" << endl; cout << "Failure: Exception in BRepLib::EncodeRegularity" << endl;

View File

@ -152,7 +152,7 @@ static Standard_Boolean Is2DClosed(const TopoDS_Shape& theShape,
TopoDS_Vertex aV2 = TopExp::LastVertex( aLastEdge, Standard_True ); TopoDS_Vertex aV2 = TopExp::LastVertex( aLastEdge, Standard_True );
return ( aV1.IsSame( aV2 ) && Is2DConnected( aLastEdge, aFisrtEdge, theSurface, theLocation)); return ( aV1.IsSame( aV2 ) && Is2DConnected( aLastEdge, aFisrtEdge, theSurface, theLocation));
} }
catch ( Standard_Failure ) { catch (Standard_Failure const&) {
return Standard_False; return Standard_False;
} }
} }

View File

@ -223,7 +223,7 @@ private:
this->registerNode(BRep_Tool::Pnt(theVertex), aPnt2d, this->registerNode(BRep_Tool::Pnt(theVertex), aPnt2d,
BRepMesh_Fixed, Standard_False); BRepMesh_Fixed, Standard_False);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
} }
} }

View File

@ -347,7 +347,7 @@ static void ComputeMaxAngleOnShape(const TopoDS_Shape& S,
{ {
tgtfaces(E, F1, F2, couture, theResAngle); tgtfaces(E, F1, F2, couture, theResAngle);
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
} }
} }
@ -562,7 +562,7 @@ TopoDS_Face BRepOffset_MakeSimpleOffset::BuildWallFace(const TopoDS_Edge& theOri
if (aFM.IsDone()) if (aFM.IsDone())
aF = aFM.Face(); aF = aFM.Face();
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
} }

View File

@ -489,7 +489,7 @@ void BRepOffsetAPI_ThruSections::Build()
CreateSmoothed(); CreateSmoothed();
} }
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
NotDone(); NotDone();
return; return;

View File

@ -336,7 +336,7 @@ BinObjMgt_Persistent& BinObjMgt_Persistent::PutCString
alignOffset (1); alignOffset (1);
Standard_Integer aSize = (Standard_Integer)(strlen (theValue) + 1); Standard_Integer aSize = (Standard_Integer)(strlen (theValue) + 1);
prepareForPut (aSize); prepareForPut (aSize);
putArray ((void* const)theValue, aSize); putArray ((void* )theValue, aSize);
return *this; return *this;
} }
@ -351,7 +351,7 @@ BinObjMgt_Persistent& BinObjMgt_Persistent::PutAsciiString
alignOffset (BP_INTSIZE, Standard_True); alignOffset (BP_INTSIZE, Standard_True);
Standard_Integer aSize = theValue.Length() + 1; Standard_Integer aSize = theValue.Length() + 1;
prepareForPut (aSize); prepareForPut (aSize);
putArray ((void* const)theValue.ToCString(), aSize); putArray ((void*)theValue.ToCString(), aSize);
return *this; return *this;
} }
@ -370,7 +370,7 @@ BinObjMgt_Persistent& BinObjMgt_Persistent::PutExtendedString
Standard_Integer aStartIndex = myIndex; Standard_Integer aStartIndex = myIndex;
Standard_Integer aStartOffset = myOffset; Standard_Integer aStartOffset = myOffset;
#endif #endif
putArray ((void* const)theValue.ToExtString(), aSize); putArray ((void* )theValue.ToExtString(), aSize);
#if DO_INVERSE #if DO_INVERSE
inverseExtCharData (aStartIndex, aStartOffset, aSize - BP_EXTCHARSIZE); inverseExtCharData (aStartIndex, aStartOffset, aSize - BP_EXTCHARSIZE);
#endif #endif

View File

@ -162,7 +162,7 @@ PCDM_ReaderStatus CDF_Application::CanRetrieve(const TCollection_ExtendedString&
if (aReader.IsNull()) if (aReader.IsNull())
return PCDM_RS_NoDriver; return PCDM_RS_NoDriver;
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
// no need to report error, this was just check for availability // no need to report error, this was just check for availability
} }

View File

@ -121,7 +121,7 @@ PCDM_StoreStatus CDF_StoreList::Store (Handle(CDM_MetaData)& aMetaData, TCollect
} }
} }
catch (CDF_MetaDataDriverError anException) { catch (CDF_MetaDataDriverError const& anException) {
CAUGHT(anException, aStatusAssociatedText, TCollection_ExtendedString("metadatadriver failed; reason:")); CAUGHT(anException, aStatusAssociatedText, TCollection_ExtendedString("metadatadriver failed; reason:"));
status = PCDM_SS_DriverFailure; status = PCDM_SS_DriverFailure;
} }

View File

@ -182,7 +182,7 @@ Standard_Integer DNaming_Line3DDriver::Execute(Handle(TFunction_Logbook)& theLog
try { try {
LoadNamingDS(aResultLabel, aWire, anArV, isClosed); LoadNamingDS(aResultLabel, aWire, anArV, isClosed);
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
aFunction->SetFailure(NAMING_FAILED); aFunction->SetFailure(NAMING_FAILED);
return -1; return -1;
} }

View File

@ -74,7 +74,7 @@
#ifdef _WIN32 #ifdef _WIN32
#define EXCEPTION ... #define EXCEPTION ...
#else #else
#define EXCEPTION Standard_Failure #define EXCEPTION Standard_Failure const&
#endif #endif
#include <ModelDefinitions.hxx> #include <ModelDefinitions.hxx>
//#define DEBUG //#define DEBUG
@ -697,7 +697,7 @@ static Standard_Integer DNaming_AttachShape (Draw_Interpretor& di,
if(!aSelector.Select(aShape, aCONTEXT, aGeometry, aKeepOrientation)) if(!aSelector.Select(aShape, aCONTEXT, aGeometry, aKeepOrientation))
return 1; return 1;
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
cout << "EXCEPTION: SELECTION_IMPOSSIBLE" <<endl; cout << "EXCEPTION: SELECTION_IMPOSSIBLE" <<endl;
} }
@ -774,7 +774,7 @@ static Standard_Integer DNaming_XAttachShape (Draw_Interpretor& di,
if(!aSelector.Select(aShape, aCONTEXT, aGeometry, aKeepOrientation)) if(!aSelector.Select(aShape, aCONTEXT, aGeometry, aKeepOrientation))
return 1; return 1;
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
cout << "EXCEPTION: SELECTION_IMPOSSIBLE" <<endl; cout << "EXCEPTION: SELECTION_IMPOSSIBLE" <<endl;
} }

View File

@ -58,7 +58,7 @@ IMPLEMENT_STANDARD_RTTIEXT(DNaming_TransformationDriver,TFunction_Driver)
#ifdef _WIN32 #ifdef _WIN32
#define EXCEPTION ... #define EXCEPTION ...
#else #else
#define EXCEPTION Standard_Failure #define EXCEPTION Standard_Failure const&
#endif #endif
#define FACES_TAG 1 #define FACES_TAG 1

View File

@ -323,7 +323,7 @@ static Standard_Integer dbreak(Draw_Interpretor& di, Standard_Integer, const cha
try { try {
OSD::ControlBreak(); OSD::ControlBreak();
} }
catch (OSD_Exception_CTRL_BREAK) { catch (OSD_Exception_CTRL_BREAK const&) {
di << "User pressed Control-Break"; di << "User pressed Control-Break";
return 1; // Tcl exception return 1; // Tcl exception
} }

View File

@ -551,7 +551,7 @@ Draw_Interpretor::~Draw_Interpretor()
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
Tcl_Exit(0); Tcl_Exit(0);
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout <<"Tcl_Exit have an exeption" << endl; cout <<"Tcl_Exit have an exeption" << endl;
#endif #endif

View File

@ -1105,7 +1105,7 @@ Standard_Boolean Init_Appli()
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
Tk_Init(interp) ; Tk_Init(interp) ;
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
cout <<" Pb au lancement de TK_Init "<<endl; cout <<" Pb au lancement de TK_Init "<<endl;
} }
@ -1135,7 +1135,7 @@ Standard_Boolean Init_Appli()
{ {
Draw_DisplayConnection = new Aspect_DisplayConnection(); Draw_DisplayConnection = new Aspect_DisplayConnection();
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
std::cout << "Cannot open display. Interpret commands in batch mode." << std::endl; std::cout << "Cannot open display. Interpret commands in batch mode." << std::endl;
return Standard_False; return Standard_False;
@ -1293,7 +1293,7 @@ static void StdinProc(ClientData clientData, int )
prompt: prompt:
if (tty) Prompt(Draw::GetInterpretor().Interp(), gotPartial); if (tty) Prompt(Draw::GetInterpretor().Interp(), gotPartial);
} catch (Standard_Failure) {} } catch (Standard_Failure const&) {}
} }

View File

@ -43,7 +43,7 @@ Standard_Boolean ExprIntrp::Parse(const Handle(ExprIntrp_Generator)& gen, const
ExprIntrp_stop_string(); ExprIntrp_stop_string();
return Standard_True; return Standard_True;
} }
catch (Standard_Failure) {} catch (Standard_Failure const&) {}
} }
ExprIntrp_stop_string(); ExprIntrp_stop_string();
return Standard_False; return Standard_False;

View File

@ -437,7 +437,7 @@ void Geom2dAPI_PointsToBSpline::Init
try { try {
Variation.Approximate(); Variation.Approximate();
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
return; return;
} }

View File

@ -315,7 +315,7 @@ void GeomAPI_PointsToBSpline::Init
try { try {
Variation.Approximate(); Variation.Approximate();
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
return; return;
} }

View File

@ -353,7 +353,7 @@ void GeomAPI_PointsToBSplineSurface::Init(const TColgp_Array2OfPnt& Points,
try { try {
Variation.Approximate(); Variation.Approximate();
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
return; return;
} }
@ -413,7 +413,7 @@ void GeomAPI_PointsToBSplineSurface::Init(const TColgp_Array2OfPnt& Points,
try { try {
Variation2.Approximate(); Variation2.Approximate();
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
return; return;
} }

View File

@ -608,7 +608,7 @@ static Standard_Boolean IsSweepParallelSpine (const Handle(GeomFill_LocationLaw)
Tf(2,1), Tf(2,2), Tf(2,3), Tf(2,4), Tf(2,1), Tf(2,2), Tf(2,3), Tf(2,4),
Tf(3,1), Tf(3,2), Tf(3,3), Tf(3,4)); Tf(3,1), Tf(3,2), Tf(3,3), Tf(3,4));
} }
catch (Standard_ConstructionError) { catch (Standard_ConstructionError const&) {
IsTrsf = Standard_False; IsTrsf = Standard_False;
} }
if (!IsTrsf) { if (!IsTrsf) {

View File

@ -100,7 +100,7 @@ class GeomLib_CheckCurveOnSurface_TargetFunc :
theFVal = -1.0*aP1.SquareDistance(aP2); theFVal = -1.0*aP1.SquareDistance(aP2);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
return Standard_False; return Standard_False;
} }
// //
@ -157,7 +157,7 @@ class GeomLib_CheckCurveOnSurface_TargetFunc :
*theDeriv2 = -2.0*(aVec2.SquareMagnitude() + aVec1.Dot(aVec3)); *theDeriv2 = -2.0*(aVec2.SquareMagnitude() + aVec1.Dot(aVec3));
} }
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
return Standard_False; return Standard_False;
} }
@ -455,7 +455,7 @@ void GeomLib_CheckCurveOnSurface::Perform(const Handle(Geom2d_Curve)& thePCurve,
myMaxDistance = sqrt(Abs(myMaxDistance)); myMaxDistance = sqrt(Abs(myMaxDistance));
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
myErrorStatus = 3; myErrorStatus = 3;
} }
} }
@ -676,7 +676,7 @@ Standard_Integer FillSubIntervals(const Handle(Geom_Curve)& theCurve3d,
theNbParticles = Max(theNbParticles, aBS2DCurv->Degree()); theNbParticles = Max(theNbParticles, aBS2DCurv->Degree());
} }
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "ERROR! BRepLib_CheckCurveOnSurface.cxx, " cout << "ERROR! BRepLib_CheckCurveOnSurface.cxx, "
@ -801,7 +801,7 @@ Standard_Boolean MinComputing (
} }
} }
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "BRepLib_CheckCurveOnSurface.cxx: Exception in MinComputing()!" << endl; cout << "BRepLib_CheckCurveOnSurface.cxx: Exception in MinComputing()!" << endl;

View File

@ -1129,7 +1129,7 @@ static Standard_Integer uniformAbscissa (Draw_Interpretor& di, Standard_Integer
} }
} }
catch (Standard_Failure ) catch (Standard_Failure const&)
{ {
di << " Standard Failure \n"; di << " Standard Failure \n";
} }
@ -1177,7 +1177,7 @@ static Standard_Integer EllipsUniformAbscissa (Draw_Interpretor& di, Standard_In
DBRep::Set("Ellipse",edge_curve); DBRep::Set("Ellipse",edge_curve);
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
di << " Standard Failure \n"; di << " Standard Failure \n";
} }
@ -1206,7 +1206,7 @@ static Standard_Integer EllipsUniformAbscissa (Draw_Interpretor& di, Standard_In
} }
} }
catch (Standard_Failure ) catch (Standard_Failure const&)
{ {
di << " Standard Failure \n"; di << " Standard Failure \n";
} }

View File

@ -3325,7 +3325,7 @@ void IFSelect_WorkSession::DumpModel
if (level == 3) C = CT.CheckList(); if (level == 3) C = CT.CheckList();
else C = CT.CompleteCheckList(); else C = CT.CompleteCheckList();
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
Handle(Message_Messenger) sout = Message::DefaultMessenger(); Handle(Message_Messenger) sout = Message::DefaultMessenger();
sout<<" **** Interruption DumpModel (Check) par Exception ****\n"; sout<<" **** Interruption DumpModel (Check) par Exception ****\n";
S<<" ** ** Exception Raised during Check ! ** **\n"; S<<" ** ** Exception Raised during Check ! ** **\n";

View File

@ -126,7 +126,7 @@ Standard_Integer IGESFile_Read
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
IGESFile_ReadHeader(IR); IGESFile_ReadHeader(IR);
} // fin essai 1 (global) } // fin essai 1 (global)
catch (Standard_Failure) { catch (Standard_Failure const&) {
// Sending of message : Internal error during the header reading // Sending of message : Internal error during the header reading
Message_Msg Msg11 = Message_Msg("XSTEP_11"); Message_Msg Msg11 = Message_Msg("XSTEP_11");
IGESFile_Check (1,Msg11); IGESFile_Check (1,Msg11);
@ -140,7 +140,7 @@ Standard_Integer IGESFile_Read
// Sending of message : Loaded data // Sending of message : Loaded data
} // fin essai 2 (entites) } // fin essai 2 (entites)
catch (Standard_Failure) { catch (Standard_Failure const&) {
// Sending of message : Internal error during the content reading // Sending of message : Internal error during the content reading
if (recupnp == 0) { if (recupnp == 0) {
Message_Msg Msg13 = Message_Msg("XSTEP_13"); Message_Msg Msg13 = Message_Msg("XSTEP_13");

View File

@ -191,7 +191,7 @@ static Handle(IGESData_FileProtocol) IGESProto;
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
dump.Dump(igesent,S,level,(level-1)/3); dump.Dump(igesent,S,level,(level-1)/3);
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
S << " ** Dump Interrupt **" << endl; S << " ** Dump Interrupt **" << endl;
} }
} }

View File

@ -114,7 +114,7 @@ static Standard_Boolean EncodeRegul (const TopoDS_Shape& sh)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
BRepLib::EncodeRegularity (sh,tolang); BRepLib::EncodeRegularity (sh,tolang);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
return Standard_False; return Standard_False;
} }
return Standard_True; return Standard_True;
@ -191,7 +191,7 @@ Handle(Transfer_Binder) IGESToBRep_Actor::Transfer
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
shape = CAS.TransferGeometry(ent); shape = CAS.TransferGeometry(ent);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
shape.Nullify(); shape.Nullify();
} }
} }

View File

@ -1121,7 +1121,7 @@ Handle(Geom_Curve) IGESToBRep_BasicCurve::TransferBSplineCurve
BSplineRes->Segment(Udeb, Ufin); BSplineRes->Segment(Udeb, Ufin);
res = BSplineRes; res = BSplineRes;
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
Handle(Geom_TrimmedCurve) gtc = new Geom_TrimmedCurve(BSplineRes2,Udeb,Ufin); Handle(Geom_TrimmedCurve) gtc = new Geom_TrimmedCurve(BSplineRes2,Udeb,Ufin);
res = gtc; res = gtc;
} }

View File

@ -293,7 +293,7 @@ TopoDS_Shape IGESToBRep_CurveAndSurface::TransferGeometry
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
res = TransferCurveAndSurface(start); res = TransferCurveAndSurface(start);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
Message_Msg msg1015("IGES_1015"); Message_Msg msg1015("IGES_1015");
SendFail(start, msg1015); SendFail(start, msg1015);
} }
@ -325,7 +325,7 @@ TopoDS_Shape IGESToBRep_CurveAndSurface::TransferGeometry
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
res = TransferGeometry(stsub); res = TransferGeometry(stsub);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
res.Nullify(); res.Nullify();
Message_Msg msg1015("IGES_1015"); Message_Msg msg1015("IGES_1015");
SendFail( st408, msg1015); SendFail( st408, msg1015);
@ -368,7 +368,7 @@ TopoDS_Shape IGESToBRep_CurveAndSurface::TransferGeometry
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
item = TransferGeometry(st308->AssociatedEntity(i)); item = TransferGeometry(st308->AssociatedEntity(i));
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
item.Nullify(); item.Nullify();
Message_Msg msg1015("IGES_1015"); Message_Msg msg1015("IGES_1015");
SendFail( st308->AssociatedEntity(i), msg1015); SendFail( st308->AssociatedEntity(i), msg1015);
@ -422,7 +422,7 @@ TopoDS_Shape IGESToBRep_CurveAndSurface::TransferGeometry
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
item = TransferGeometry(st402f1->Entity(i)); item = TransferGeometry(st402f1->Entity(i));
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
item.Nullify(); item.Nullify();
Message_Msg msg1015("IGES_1015"); Message_Msg msg1015("IGES_1015");
SendFail(st402f1->Entity(i),msg1015); SendFail(st402f1->Entity(i),msg1015);
@ -485,7 +485,7 @@ TopoDS_Shape IGESToBRep_CurveAndSurface::TransferGeometry
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
item = TransferGeometry(st402f7->Entity(i)); item = TransferGeometry(st402f7->Entity(i));
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
item.Nullify(); item.Nullify();
Message_Msg msg1015("IGES_1015"); Message_Msg msg1015("IGES_1015");
SendFail(st402f7->Entity(i),msg1015); SendFail(st402f7->Entity(i),msg1015);

View File

@ -296,7 +296,7 @@ static Standard_Boolean EncodeRegul (const TopoDS_Shape& sh)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
BRepLib::EncodeRegularity (sh,tolang); BRepLib::EncodeRegularity (sh,tolang);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
return Standard_False; return Standard_False;
} }
return Standard_True; return Standard_True;
@ -431,7 +431,7 @@ void IGESToBRep_Reader::TransferRoots (const Standard_Boolean onlyvisible)
TP.Transfer(ent); TP.Transfer(ent);
shape = TransferBRep::ShapeResult (theProc,ent); shape = TransferBRep::ShapeResult (theProc,ent);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
Message_Msg msg1005("IGES_1005"); Message_Msg msg1005("IGES_1005");
TF->Send (msg1005, Message_Info); TF->Send (msg1005, Message_Info);
continue; continue;
@ -540,7 +540,7 @@ Standard_Boolean IGESToBRep_Reader::Transfer(const Standard_Integer num)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
shape = CAS.TransferGeometry (ent); shape = CAS.TransferGeometry (ent);
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
Message_Msg msg1015("IGES_1015"); Message_Msg msg1015("IGES_1015");
TF->Send (msg1015, Message_Info); TF->Send (msg1015, Message_Info);
exceptionRaised = Standard_True; exceptionRaised = Standard_True;

View File

@ -44,10 +44,10 @@ inline gp_Dir2d IntImp_ZerParFunc::DirectionOnS2() const {
} }
inline const ThePSurface& IntImp_ZerParFunc::AuxillarSurface1() const { inline const ThePSurface& IntImp_ZerParFunc::AuxillarSurface1() const {
return (*((const ThePSurface * const)(surf1))); return *((const ThePSurface* )surf1);
} }
inline const ThePSurface& IntImp_ZerParFunc::AuxillarSurface2() const { inline const ThePSurface& IntImp_ZerParFunc::AuxillarSurface2() const {
return (*((const ThePSurface * const)(surf2))); return *((const ThePSurface* )surf2);
} }

View File

@ -68,7 +68,7 @@ public:
(aP1.XYZ()-aP2.XYZ()).Coord(theF(anIndF), theF(anIndF+1), theF(anIndF+2)); (aP1.XYZ()-aP2.XYZ()).Coord(theF(anIndF), theF(anIndF+1), theF(anIndF+2));
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
return Standard_False; return Standard_False;
} }
@ -106,7 +106,7 @@ public:
aD2[mySeamCoordInd].Reversed().Coord(theD(anIndRD, anIndCD+2), aD2[mySeamCoordInd].Reversed().Coord(theD(anIndRD, anIndCD+2),
theD(anIndRD+1, anIndCD+2), theD(anIndRD+2, anIndCD+2)); theD(anIndRD+1, anIndCD+2), theD(anIndRD+2, anIndCD+2));
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
return Standard_False; return Standard_False;
} }

View File

@ -332,7 +332,7 @@ void Interface_FileReaderTool::LoadModel
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
BeginRead(amodel); // selon la norme BeginRead(amodel); // selon la norme
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
// Sendinf of message : Internal error during the header reading // Sendinf of message : Internal error during the header reading
Message_Msg Msg11("XSTEP_11"); Message_Msg Msg11("XSTEP_11");
TF->Send (Msg11, Message_Info); TF->Send (Msg11, Message_Info);
@ -481,7 +481,7 @@ void Interface_FileReaderTool::LoadModel
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
EndRead(amodel); // selon la norme EndRead(amodel); // selon la norme
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
// Sendinf of message : Internal error during the header reading // Sendinf of message : Internal error during the header reading
Message_Msg Msg11("XSTEP_11"); Message_Msg Msg11("XSTEP_11");
TF->Send (Msg11, Message_Info); TF->Send (Msg11, Message_Info);

View File

@ -149,8 +149,7 @@ char * LDOM_CharReference::Encode (const char* theSrc, Standard_Integer& theLen,
Standard_Integer aCount = 0; Standard_Integer aCount = 0;
// Analyse if there is a non-standard character in the string // Analyse if there is a non-standard character in the string
for(;;) { for(;;) {
const unsigned int iSrc = const unsigned int iSrc = (unsigned int ) *(const unsigned char* )ptrSrc;
(const unsigned int) * (const unsigned char *) ptrSrc;
if (iSrc == 0) { if (iSrc == 0) {
endSrc = ptrSrc; endSrc = ptrSrc;
break; break;
@ -167,8 +166,7 @@ char * LDOM_CharReference::Encode (const char* theSrc, Standard_Integer& theLen,
char * ptrDest = new char [(endSrc - theSrc) + aCount * 5 + 1]; char * ptrDest = new char [(endSrc - theSrc) + aCount * 5 + 1];
aDest = ptrDest; aDest = ptrDest;
for (ptrSrc = theSrc; ptrSrc < endSrc; ptrSrc++) { for (ptrSrc = theSrc; ptrSrc < endSrc; ptrSrc++) {
const unsigned int iSrc = const unsigned int iSrc = (unsigned int ) *(const unsigned char* )ptrSrc;
(const unsigned int) * (const unsigned char *) ptrSrc;
const int aCode = myTab[iSrc]; const int aCode = myTab[iSrc];
if (aCode == NORMAL_C) // normal (regular) character if (aCode == NORMAL_C) // normal (regular) character
* ptrDest++ = * ptrSrc; * ptrDest++ = * ptrSrc;

View File

@ -164,7 +164,7 @@ Standard_Integer LDOM_MemManager::HashTable::Hash (const char * aString,
unsigned int aCRC = 0; unsigned int aCRC = 0;
const unsigned char * aPtr = (const unsigned char *) aString; const unsigned char * aPtr = (const unsigned char *) aString;
for (Standard_Integer i = aLen; i > 0; i--) { for (Standard_Integer i = aLen; i > 0; i--) {
const unsigned int bTmp = aCRC ^ (const unsigned int) (* aPtr++); const unsigned int bTmp = aCRC ^ (unsigned int) (* aPtr++);
aCRC = ((aCRC >> 8) ^ wCRC16a[bTmp & 0x0F]) ^ wCRC16b[(bTmp >> 4) & 0x0F]; aCRC = ((aCRC >> 8) ^ wCRC16a[bTmp & 0x0F]) ^ wCRC16b[(bTmp >> 4) & 0x0F];
} }
return Standard_Integer (aCRC & HASH_MASK /* myMask */); return Standard_Integer (aCRC & HASH_MASK /* myMask */);

View File

@ -210,8 +210,7 @@ LDOM_XmlReader::RecordType LDOM_XmlReader::ReadRecord (Standard_IStream& theIStr
} // otherwise ERROR } // otherwise ERROR
} // end of switch } // end of switch
myError = "Unknown XML object: "; myError = "Unknown XML object: ";
myError += TCollection_AsciiString ((const Standard_CString)myPtr, myError += TCollection_AsciiString (myPtr, XML_MIN_BUFFER);
XML_MIN_BUFFER);
return XML_UNKNOWN; return XML_UNKNOWN;
case '\0': case '\0':
if (myEOF == Standard_True) continue; if (myEOF == Standard_True) continue;

View File

@ -587,7 +587,7 @@ Standard_Boolean LocOpe_SplitShape::Add(const TopoDS_Wire& W,
if(!AddClosedWire(W,F)) if(!AddClosedWire(W,F))
return Standard_False; return Standard_False;
} }
} catch (Standard_Failure ) { } catch (Standard_Failure const&) {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "Warning: SpliShape internal problem detected, some faces may be lost. Check input edges/wires" <<endl; cout << "Warning: SpliShape internal problem detected, some faces may be lost. Check input edges/wires" <<endl;
#endif #endif

View File

@ -146,7 +146,7 @@ TCollection_ExtendedString PCDM_ReadWriter::FileFormat
theFormat = td.Types()->Value(1); theFormat = td.Types()->Value(1);
} }
} }
catch (Standard_Failure) {} catch (Standard_Failure const&) {}
if(theFileIsOpen)theFileDriver->Close(); if(theFileIsOpen)theFileDriver->Close();

View File

@ -251,7 +251,7 @@ Standard_Integer PCDM_ReadWriter_1::ReadReferenceCounter(const TCollection_Exten
for ( i =1; i<= refUserInfo.Length() ; i++) { for ( i =1; i<= refUserInfo.Length() ; i++) {
if(refUserInfo(i).Search(REFERENCE_COUNTER) != -1) { if(refUserInfo(i).Search(REFERENCE_COUNTER) != -1) {
try { OCC_CATCH_SIGNALS theReferencesCounter=refUserInfo(i).Token(" ",2).IntegerValue();} try { OCC_CATCH_SIGNALS theReferencesCounter=refUserInfo(i).Token(" ",2).IntegerValue();}
catch (Standard_Failure) { catch (Standard_Failure const&) {
// cout << "warning: could not read the reference counter in " << aFileName << endl; // cout << "warning: could not read the reference counter in " << aFileName << endl;
TCollection_ExtendedString aMsg("Warning: "); TCollection_ExtendedString aMsg("Warning: ");
aMsg = aMsg.Cat("could not read the reference counter in ").Cat(aFileName).Cat("\0"); aMsg = aMsg.Cat("could not read the reference counter in ").Cat(aFileName).Cat("\0");
@ -262,7 +262,7 @@ Standard_Integer PCDM_ReadWriter_1::ReadReferenceCounter(const TCollection_Exten
} }
} }
catch (Standard_Failure) {} catch (Standard_Failure const&) {}
if(theFileIsOpen) theFileDriver->Close(); if(theFileIsOpen) theFileDriver->Close();
@ -400,7 +400,7 @@ Standard_Integer PCDM_ReadWriter_1::ReadDocumentVersion(const TCollection_Extend
for ( i =1; i<= refUserInfo.Length() ; i++) { for ( i =1; i<= refUserInfo.Length() ; i++) {
if(refUserInfo(i).Search(MODIFICATION_COUNTER) != -1) { if(refUserInfo(i).Search(MODIFICATION_COUNTER) != -1) {
try { OCC_CATCH_SIGNALS theVersion=refUserInfo(i).Token(" ",2).IntegerValue();} try { OCC_CATCH_SIGNALS theVersion=refUserInfo(i).Token(" ",2).IntegerValue();}
catch (Standard_Failure) { catch (Standard_Failure const&) {
// cout << "warning: could not read the version in " << aFileName << endl; // cout << "warning: could not read the version in " << aFileName << endl;
TCollection_ExtendedString aMsg("Warning: "); TCollection_ExtendedString aMsg("Warning: ");
aMsg = aMsg.Cat("could not read the version in ").Cat(aFileName).Cat("\0"); aMsg = aMsg.Cat("could not read the version in ").Cat(aFileName).Cat("\0");
@ -412,7 +412,7 @@ Standard_Integer PCDM_ReadWriter_1::ReadDocumentVersion(const TCollection_Extend
} }
} }
catch (Standard_Failure) {} catch (Standard_Failure const&) {}
if(theFileIsOpen) theFileDriver->Close(); if(theFileIsOpen) theFileDriver->Close();
delete theFileDriver; delete theFileDriver;

View File

@ -191,7 +191,7 @@ static Standard_Integer isPeriodic(Draw_Interpretor& di, Standard_Integer argc,
if(aRevolSurf->IsUPeriodic()) {di << "Surface is u-periodic \n";} else {di << "Surface is not u-periodic \n";} if(aRevolSurf->IsUPeriodic()) {di << "Surface is u-periodic \n";} else {di << "Surface is not u-periodic \n";}
if(aRevolSurf->IsVPeriodic()) {di << "Surface is v-periodic \n";} else {di << "Surface is not v-periodic \n";} if(aRevolSurf->IsVPeriodic()) {di << "Surface is v-periodic \n";} else {di << "Surface is not v-periodic \n";}
} }
catch (Standard_Failure) {di << "isperiodic Exception \n" ;return 0;} catch (Standard_Failure const&) {di << "isperiodic Exception \n" ;return 0;}
return 0; return 0;
} }
@ -261,7 +261,7 @@ static Standard_Integer OCC486(Draw_Interpretor& di, Standard_Integer argc, cons
} }
else return 1; else return 1;
} }
catch (Standard_Failure) {di << "OCC486 Exception \n" ;return 1;} catch (Standard_Failure const&) {di << "OCC486 Exception \n" ;return 1;}
} }
#include <GC_MakeArcOfCircle.hxx> #include <GC_MakeArcOfCircle.hxx>
@ -384,7 +384,7 @@ static Standard_Integer OCC712 (Draw_Interpretor& di, Standard_Integer argc, con
DBRep::Set(argv[1], slabShape); DBRep::Set(argv[1], slabShape);
} }
} }
catch ( Standard_Failure ) //--------------------> STEP:2 catch ( Standard_Failure const& ) //--------------------> STEP:2
{ {
di << " Error in Draft Slab \n"; di << " Error in Draft Slab \n";
return 1; return 1;
@ -485,7 +485,7 @@ static Standard_Integer OCC822_1 (Draw_Interpretor& di, Standard_Integer argc, c
performTriangulation(theRes, di); performTriangulation(theRes, di);
} }
catch ( Standard_Failure ) catch ( Standard_Failure const& )
{ {
di << "*********************************************************\n"; di << "*********************************************************\n";
di << "***** ******\n"; di << "***** ******\n";
@ -540,7 +540,7 @@ static Standard_Integer OCC822_2 (Draw_Interpretor& di,Standard_Integer argc, co
performTriangulation(fuse, di); performTriangulation(fuse, di);
} }
catch ( Standard_Failure ) catch ( Standard_Failure const& )
{ {
di << "*********************************************************\n"; di << "*********************************************************\n";
di << "***** ******\n"; di << "***** ******\n";
@ -595,7 +595,7 @@ static Standard_Integer OCC823 (Draw_Interpretor& di,Standard_Integer argc, cons
performTriangulation(fuse, di); performTriangulation(fuse, di);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
di << "*********************************************************\n"; di << "*********************************************************\n";
di << "***** ******\n"; di << "***** ******\n";
@ -645,7 +645,7 @@ static Standard_Integer OCC824 (Draw_Interpretor& di,Standard_Integer argc, cons
performTriangulation(fuse, di); performTriangulation(fuse, di);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
di << "*********************************************************\n"; di << "*********************************************************\n";
di << "***** ******\n"; di << "***** ******\n";
@ -732,7 +732,7 @@ static Standard_Integer OCC825 (Draw_Interpretor& di,Standard_Integer argc, cons
di << "Trianglating Faces of CUT 2 .....\n"; di << "Trianglating Faces of CUT 2 .....\n";
performTriangulation(cut2, di); performTriangulation(cut2, di);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
di << "*********************************************************\n"; di << "*********************************************************\n";
di << "***** ******\n"; di << "***** ******\n";
@ -803,7 +803,7 @@ static Standard_Integer OCC826 (Draw_Interpretor& di,Standard_Integer argc, cons
di << "Fuse Created ! Triangulating !\n"; di << "Fuse Created ! Triangulating !\n";
performTriangulation(fuse, di); performTriangulation(fuse, di);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
di << "*********************************************************\n"; di << "*********************************************************\n";
di << "***** ******\n"; di << "***** ******\n";
@ -882,7 +882,7 @@ static Standard_Integer OCC827 (Draw_Interpretor& di,Standard_Integer argc, cons
performTriangulation(fuse2, di); performTriangulation(fuse2, di);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
di << "*********************************************************\n"; di << "*********************************************************\n";
di << "***** ******\n"; di << "***** ******\n";
@ -921,7 +921,7 @@ int performBlend (TopoDS_Shape aShape, Standard_Real rad, TopoDS_Shape& bShape,
status = 1; status = 1;
} }
} }
catch ( Standard_Failure ) catch ( Standard_Failure const& )
{ {
status = 1; status = 1;
} }
@ -1026,7 +1026,7 @@ static Standard_Integer OCC828 (Draw_Interpretor& di,Standard_Integer argc, cons
// cout << "Blending Successfully Done ! Now Triangulating ..." << endl; // cout << "Blending Successfully Done ! Now Triangulating ..." << endl;
// performTriangulation(aShape); // performTriangulation(aShape);
} }
catch ( Standard_Failure ) catch ( Standard_Failure const& )
{ {
di << " Error in Draft Slab \n"; di << " Error in Draft Slab \n";
return 1; return 1;

View File

@ -993,7 +993,7 @@ static Standard_Integer OCC363 (Draw_Interpretor& di, Standard_Integer argc, con
if ( ! seq.Value(i).FindAttribute ( TPrsStd_AISPresentation::GetID(), prs ) ) if ( ! seq.Value(i).FindAttribute ( TPrsStd_AISPresentation::GetID(), prs ) )
prs = TPrsStd_AISPresentation::Set(seq.Value(i),XCAFPrs_Driver::GetID()); prs = TPrsStd_AISPresentation::Set(seq.Value(i),XCAFPrs_Driver::GetID());
} }
catch(Standard_Failure) { di << "FAULTY OCC363 : Exception during reading document.\n";return 0;} catch(Standard_Failure const&) { di << "FAULTY OCC363 : Exception during reading document.\n";return 0;}
di << "OCC363 OK\n"; di << "OCC363 OK\n";
return 0; return 0;
@ -1127,7 +1127,7 @@ static Standard_Integer OCC377 (Draw_Interpretor& di, Standard_Integer argc, con
else {di << "OCC377 FAULTY\n"; return 0;} else {di << "OCC377 FAULTY\n"; return 0;}
} }
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
di << "OCC377 Exception"; di << "OCC377 Exception";
} }
@ -1183,7 +1183,7 @@ static Standard_Integer OCC22 (Draw_Interpretor& di, Standard_Integer argc, cons
// 4.3. Create result Draw shape // 4.3. Create result Draw shape
DBRep::Set(argv[1], aResultShape); DBRep::Set(argv[1], aResultShape);
} }
catch (Standard_Failure) {di << "OCC22 Exception \n" ;return 0;} catch (Standard_Failure const&) {di << "OCC22 Exception \n" ;return 0;}
return 0; return 0;
} }
@ -1238,7 +1238,7 @@ static Standard_Integer OCC24 (Draw_Interpretor& di, Standard_Integer argc, cons
DBRep::Set(argv[1], aResultShape); DBRep::Set(argv[1], aResultShape);
} }
catch (Standard_Failure) {di << "OCC24 Exception \n" ;return 0;} catch (Standard_Failure const&) {di << "OCC24 Exception \n" ;return 0;}
return 0; return 0;
} }
@ -1267,7 +1267,7 @@ static Standard_Integer OCC369(Draw_Interpretor& di, Standard_Integer argc, cons
BRepMesh_IncrementalMesh aMesh(aShape, aMeshParams); BRepMesh_IncrementalMesh aMesh(aShape, aMeshParams);
} }
catch (Standard_Failure) {di << "OCC369 Exception \n" ;return 0;} catch (Standard_Failure const&) {di << "OCC369 Exception \n" ;return 0;}
di << "OCC369 OK \n"; di << "OCC369 OK \n";
return 0; return 0;
@ -2234,9 +2234,9 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
Succes = Standard_False; Succes = Standard_False;
} }
#if defined(SOLARIS) || defined(_WIN32) #if defined(SOLARIS) || defined(_WIN32)
catch(Standard_DivideByZero) catch(Standard_DivideByZero const&)
#else #else
catch(Standard_NumericError) catch(Standard_NumericError const&)
#endif #endif
{ {
di << "Caught, OK\n"; di << "Caught, OK\n";
@ -2266,11 +2266,11 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
di << "Error: 4.0 / 0.0 = " << res << " - no exception is raised!\n"; di << "Error: 4.0 / 0.0 = " << res << " - no exception is raised!\n";
Succes = Standard_False; Succes = Standard_False;
} }
catch(Standard_DivideByZero) // Solaris, Windows w/o SSE2 catch(Standard_DivideByZero const&) // Solaris, Windows w/o SSE2
{ {
di << "Caught, OK\n"; di << "Caught, OK\n";
} }
catch(Standard_NumericError) // Linux, Windows with SSE2 catch(Standard_NumericError const&) // Linux, Windows with SSE2
{ {
di << "Caught, OK\n"; di << "Caught, OK\n";
} }
@ -2296,7 +2296,7 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
//++++ Succes = Standard_False; //++++ Succes = Standard_False;
di << "Not caught: " << i << " + 1 = " << res << ", still OK\n"; di << "Not caught: " << i << " + 1 = " << res << ", still OK\n";
} }
catch(Standard_Overflow) { catch(Standard_Overflow const&) {
di << "Caught, OK\n"; di << "Caught, OK\n";
} }
catch(Standard_Failure const& anException) { catch(Standard_Failure const& anException) {
@ -2323,11 +2323,11 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
di << "Error: " << r << "*" << r << " = " << res << " - no exception is raised!\n"; di << "Error: " << r << "*" << r << " = " << res << " - no exception is raised!\n";
Succes = Standard_False; Succes = Standard_False;
} }
catch(Standard_Overflow) // Solaris, Windows w/o SSE2 catch(Standard_Overflow const&) // Solaris, Windows w/o SSE2
{ {
di << "Caught, OK\n"; di << "Caught, OK\n";
} }
catch(Standard_NumericError) // Linux, Windows with SSE2 catch(Standard_NumericError const&) // Linux, Windows with SSE2
{ {
di << "Caught, OK\n"; di << "Caught, OK\n";
} }
@ -2354,12 +2354,12 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
//++++ Succes = Standard_False; //++++ Succes = Standard_False;
di << "Not caught: " << r << "*" << r << " = " << res << ", still OK\n"; di << "Not caught: " << r << "*" << r << " = " << res << ", still OK\n";
} }
catch(Standard_Underflow) // could be on Solaris, Windows w/o SSE2 catch(Standard_Underflow const&) // could be on Solaris, Windows w/o SSE2
{ {
di << "Exception caught, KO\n"; di << "Exception caught, KO\n";
Succes = Standard_False; Succes = Standard_False;
} }
catch(Standard_NumericError) // could be on Linux, Windows with SSE2 catch(Standard_NumericError const&) // could be on Linux, Windows with SSE2
{ {
di << "Exception caught, KO\n"; di << "Exception caught, KO\n";
Succes = Standard_False; Succes = Standard_False;
@ -2385,7 +2385,7 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
di << "Error: swrt(-1) = " << res << " - no exception is raised!\n"; di << "Error: swrt(-1) = " << res << " - no exception is raised!\n";
Succes = Standard_False; Succes = Standard_False;
} }
catch(Standard_NumericError) { catch(Standard_NumericError const&) {
di << "Caught, OK\n"; di << "Caught, OK\n";
} }
catch(Standard_Failure const& anException) { catch(Standard_Failure const& anException) {
@ -2410,9 +2410,9 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
Succes = Standard_False; Succes = Standard_False;
} }
#ifdef _WIN32 #ifdef _WIN32
catch(OSD_Exception_ACCESS_VIOLATION) catch(OSD_Exception_ACCESS_VIOLATION const&)
#else #else
catch(OSD_SIGSEGV) catch(OSD_SIGSEGV const&)
#endif #endif
{ {
di << "Caught, OK\n"; di << "Caught, OK\n";
@ -2437,7 +2437,7 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
di << "Error - no exception is raised!\n"; di << "Error - no exception is raised!\n";
Succes = Standard_False; Succes = Standard_False;
} }
catch(OSD_Exception_STACK_OVERFLOW) { catch(OSD_Exception_STACK_OVERFLOW const&) {
di << "Caught, OK\n"; di << "Caught, OK\n";
} }
catch(Standard_Failure const& anException) { catch(Standard_Failure const& anException) {
@ -2508,7 +2508,7 @@ static Standard_Integer OCC7141 (Draw_Interpretor& di, Standard_Integer argc, co
writer.Write(aFilePath.ToCString()); writer.Write(aFilePath.ToCString());
} }
} }
catch(OSD_Exception_STACK_OVERFLOW) { catch(OSD_Exception_STACK_OVERFLOW const&) {
di << "Failed : STACK OVERFLOW\n\n"; di << "Failed : STACK OVERFLOW\n\n";
} }
catch (Standard_Failure const& anException) { catch (Standard_Failure const& anException) {
@ -3055,7 +3055,7 @@ static Standard_Integer OCC15489 (Draw_Interpretor& di, Standard_Integer argc, c
gp_Pnt2d anOrigin = aLin2d.Location(); gp_Pnt2d anOrigin = aLin2d.Location();
di << "X_0 = " << anOrigin.X() << " Y_0 = " << anOrigin.Y() << "\n" ; di << "X_0 = " << anOrigin.X() << " Y_0 = " << anOrigin.Y() << "\n" ;
} }
catch(Standard_ConstructionError) catch(Standard_ConstructionError const&)
{ {
di << argv[0] << " Exception: Sqrt(A*A + B*B) <= Resolution from gp\n"; di << argv[0] << " Exception: Sqrt(A*A + B*B) <= Resolution from gp\n";
} }

View File

@ -365,7 +365,7 @@ static Standard_Integer OCC332bug (Draw_Interpretor& di, Standard_Integer argc,
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
di << " yes\n"; di << " yes\n";
} }
catch (Standard_TypeMismatch) { catch (Standard_TypeMismatch const&) {
di << " no\n"; di << " no\n";
} }
@ -657,7 +657,7 @@ static Standard_Integer OCC544 (Draw_Interpretor& di, Standard_Integer argc, con
B.Add(wallSolid,TubeShell); B.Add(wallSolid,TubeShell);
di << " yes\n"; di << " yes\n";
} }
catch (Standard_TypeMismatch) { catch (Standard_TypeMismatch const&) {
di << "Can't convert to shell...\n"; di << "Can't convert to shell...\n";
TopExp_Explorer getSol; TopExp_Explorer getSol;
getSol.Init(SewIt.SewedShape(), TopAbs_SOLID); getSol.Init(SewIt.SewedShape(), TopAbs_SOLID);

View File

@ -424,7 +424,7 @@ static Standard_Integer OCC132 (Draw_Interpretor& di, Standard_Integer argc, con
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
OSD_Path Path (argv[1], SysType1); OSD_Path Path (argv[1], SysType1);
} }
catch (Standard_ProgramError) { catch (Standard_ProgramError const&) {
di << "1\n"; di << "1\n";
return 0; return 0;
} }
@ -435,7 +435,7 @@ static Standard_Integer OCC132 (Draw_Interpretor& di, Standard_Integer argc, con
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
OSD_Path Path (argv[1], SysType2); OSD_Path Path (argv[1], SysType2);
} }
catch (Standard_ProgramError) { catch (Standard_ProgramError const&) {
di << "2\n"; di << "2\n";
return 0; return 0;
} }

View File

@ -623,7 +623,7 @@ static Standard_Integer OCC570 (Draw_Interpretor& di, Standard_Integer argc,cons
DBRep::Set(argv[1],aFinalShape); DBRep::Set(argv[1],aFinalShape);
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
di << argv[0] << ": Exception in fillet\n"; di << argv[0] << ": Exception in fillet\n";
return 2; return 2;
@ -788,7 +788,7 @@ static Standard_Integer OCC606 ( Draw_Interpretor& di, Standard_Integer n, const
DBRep::Set(a[1],bsp_face1); DBRep::Set(a[1],bsp_face1);
} }
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
di<<"ERROR: Exception in GeomFill_NSections\n"; di<<"ERROR: Exception in GeomFill_NSections\n";
} }

View File

@ -1937,7 +1937,7 @@ static Standard_Integer OCC24834 (Draw_Interpretor& di, Standard_Integer n, cons
aList.Append(MyStubObject(Standard::Allocate(aLargeBlockSize))); aList.Append(MyStubObject(Standard::Allocate(aLargeBlockSize)));
} }
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
di << "caught out of memory for large blocks: OK\n"; di << "caught out of memory for large blocks: OK\n";
} }
@ -1954,7 +1954,7 @@ static Standard_Integer OCC24834 (Draw_Interpretor& di, Standard_Integer n, cons
aList.Append(MyStubObject(Standard::Allocate(aSmallBlockSize))); aList.Append(MyStubObject(Standard::Allocate(aSmallBlockSize)));
} }
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
di << "caught out of memory for small blocks: OK\n"; di << "caught out of memory for small blocks: OK\n";
} }
@ -3260,7 +3260,7 @@ static Standard_Integer OCC26139 (Draw_Interpretor& theDI,
#ifdef _WIN32 #ifdef _WIN32
#define EXCEPTION ... #define EXCEPTION ...
#else #else
#define EXCEPTION Standard_Failure #define EXCEPTION Standard_Failure const&
#endif #endif
static ShapeExtend_Status getStatusGap(const Handle(ShapeFix_Wire)& theFix, static ShapeExtend_Status getStatusGap(const Handle(ShapeFix_Wire)& theFix,
@ -4276,7 +4276,7 @@ static Standard_Integer OCC26313(Draw_Interpretor& di,Standard_Integer n,const c
{ {
DBRep::Set(a[1], gtrf.ModifiedShape(aSrcShape)); DBRep::Set(a[1], gtrf.ModifiedShape(aSrcShape));
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
di << "Error: Exception is thrown\n"; di << "Error: Exception is thrown\n";
} }

View File

@ -122,7 +122,7 @@ static Standard_Integer OCC527(Draw_Interpretor& di, Standard_Integer argc, cons
} }
} }
} }
catch (Standard_Failure) {di << "OCC527 Exception \n" ;return 0;} catch (Standard_Failure const&) {di << "OCC527 Exception \n" ;return 0;}
return 0; return 0;
} }

View File

@ -1321,7 +1321,7 @@ namespace AllocTest
for (;;) for (;;)
aList.Append(Standard::Allocate(aBlockSizes[i])); aList.Append(Standard::Allocate(aBlockSizes[i]));
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
aStatus |= OUMCatchOK; aStatus |= OUMCatchOK;
} }
@ -2031,7 +2031,7 @@ static Standard_Integer OCC27357(Draw_Interpretor& theDI,
Geom2dAdaptor_Curve(normalLine),1e-9,g1,g1,g3); Geom2dAdaptor_Curve(normalLine),1e-9,g1,g1,g3);
aDuumyList.Append(aCircleBuilder.NbSolutions()); aDuumyList.Append(aCircleBuilder.NbSolutions());
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
theDI << "Exception was caught\n"; theDI << "Exception was caught\n";
} }
@ -2084,7 +2084,7 @@ static Standard_Integer OCC26270(Draw_Interpretor& theDI,
DBRep::Set(theArgVal[2], bsp_face1); DBRep::Set(theArgVal[2], bsp_face1);
} }
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
theDI << "ERROR: Exception in GeomFill_NSections\n"; theDI << "ERROR: Exception in GeomFill_NSections\n";
} }

View File

@ -106,7 +106,7 @@ static Standard_Integer OCC5696 (Draw_Interpretor& di, Standard_Integer argc, co
di << "par_edge = " << par_edge << "\n"; di << "par_edge = " << par_edge << "\n";
} }
catch (Standard_Failure) {di << "OCC5696 Exception \n" ;return 0;} catch (Standard_Failure const&) {di << "OCC5696 Exception \n" ;return 0;}
return 0; return 0;
} }

View File

@ -262,7 +262,7 @@ Standard_Boolean Resource_Manager::Save() const
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
Dir.Build(OSD_Protection(OSD_RX, OSD_RWXD, OSD_RX, OSD_RX)); Dir.Build(OSD_Protection(OSD_RX, OSD_RWXD, OSD_RX, OSD_RX));
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
aStatus = Standard_False; aStatus = Standard_False;
} }
} }
@ -291,7 +291,7 @@ Standard_Boolean Resource_Manager::Save() const
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
File.Build(OSD_ReadWrite, theProt); File.Build(OSD_ReadWrite, theProt);
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
aStatus = Standard_False; aStatus = Standard_False;
} }
} }

View File

@ -835,7 +835,7 @@ Standard_Boolean STEPCAFControl_Writer::WriteExternRefs (const Handle(XSControl_
} }
// add extern ref // add extern ref
const Standard_CString format = (const Standard_CString) ( schema == 3 ? "STEP AP203" : "STEP AP214" ); const char* format = (schema == 3 ? "STEP AP203" : "STEP AP214");
// try to get PD from SDR // try to get PD from SDR
StepRepr_RepresentedDefinition RD = SDR->Definition(); StepRepr_RepresentedDefinition RD = SDR->Definition();
Handle(StepRepr_PropertyDefinition) aPropDef = RD.PropertyDefinition(); Handle(StepRepr_PropertyDefinition) aPropDef = RD.PropertyDefinition();

View File

@ -1234,7 +1234,7 @@ Handle(TransferBRep_ShapeBinder) STEPControl_ActorRead::TransferEntity(const Han
found = Standard_True; found = Standard_True;
} }
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
TP->AddFail(start,"Exeption is raised. Entity was not translated."); TP->AddFail(start,"Exeption is raised. Entity was not translated.");
TP->Bind(start, shbinder); TP->Bind(start, shbinder);
return shbinder; return shbinder;
@ -1395,7 +1395,7 @@ Handle(TransferBRep_ShapeBinder) STEPControl_ActorRead::TransferEntity(const Han
TP->Bind(fs, sb); TP->Bind(fs, sb);
return sb; // TP->Find (start); return sb; // TP->Find (start);
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
TP->AddFail(fs,"Exeption is raised. Entity was not translated."); TP->AddFail(fs,"Exeption is raised. Entity was not translated.");
sb.Nullify(); sb.Nullify();

View File

@ -924,7 +924,7 @@ Standard_Boolean ShapeAnalysis_CheckSmallFace::CheckTwisted (const TopoDS_Face&
angle1 = V11.Angle(V12); angle1 = V11.Angle(V12);
angle2 = V21.Angle(V22); angle2 = V21.Angle(V22);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "Couldn't compute angle between derivative vectors" <<endl; cout << "Couldn't compute angle between derivative vectors" <<endl;

View File

@ -838,7 +838,7 @@ static void AppendControlPoles (TColgp_SequenceOfPnt& seq,
AppendControlPoles(seq,bslp); AppendControlPoles(seq,bslp);
done = Standard_True; done = Standard_True;
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
} }
} }
else if ( aBaseCrv->IsKind(STANDARD_TYPE(Geom_BezierCurve))) { else if ( aBaseCrv->IsKind(STANDARD_TYPE(Geom_BezierCurve))) {
@ -850,7 +850,7 @@ static void AppendControlPoles (TColgp_SequenceOfPnt& seq,
AppendControlPoles(seq,bz); AppendControlPoles(seq,bz);
done = Standard_True; done = Standard_True;
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
} }
} }
if (!done) { if (!done) {

View File

@ -108,7 +108,7 @@ TopoDS_Shape ShapeCustom::ApplyModifier (const TopoDS_Shape &S,
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
result = MD.ModifiedShape( current ); result = MD.ModifiedShape( current );
} }
catch (Standard_NoSuchObject) catch (Standard_NoSuchObject const&)
{ {
// the sub shape isn't in the map // the sub shape isn't in the map
result.Nullify(); result.Nullify();

View File

@ -174,7 +174,7 @@ Standard_Boolean ShapeCustom_Curve2d::SimplifyBSpline2d (Handle(Geom2d_BSplineCu
aMult-1, aMult-1,
theTolerance); theTolerance);
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
} }
} }

View File

@ -282,7 +282,7 @@ ShapeFix_FaceConnect::ShapeFix_FaceConnect() {}
Standard_Boolean sewing_ok = Standard_True; Standard_Boolean sewing_ok = Standard_True;
{ {
try { OCC_CATCH_SIGNALS theSewer.Perform(); } try { OCC_CATCH_SIGNALS theSewer.Perform(); }
catch(Standard_Failure) { sewing_ok = Standard_False; } catch(Standard_Failure const&) { sewing_ok = Standard_False; }
} }
if ( sewing_ok ) if ( sewing_ok )
if (theSewer.SewedShape().IsNull()) sewing_ok = Standard_False; if (theSewer.SewedShape().IsNull()) sewing_ok = Standard_False;

View File

@ -2913,7 +2913,7 @@ static Standard_Boolean TryBendingPCurve (const TopoDS_Edge &E, const TopoDS_Fac
if ( ! TryNewPCurve ( E, face, c2d, first, last, tol ) ) return Standard_False; if ( ! TryNewPCurve ( E, face, c2d, first, last, tol ) ) return Standard_False;
} }
catch ( Standard_Failure ) { catch ( Standard_Failure const& ) {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "Warning: ShapeFix_Wire::FixLacking: Exception in Geom2d_BSplineCurve::Segment()" << endl; cout << "Warning: ShapeFix_Wire::FixLacking: Exception in Geom2d_BSplineCurve::Segment()" << endl;
#endif #endif

View File

@ -598,7 +598,7 @@ static Standard_Real AdjustOnPeriodic3d (const Handle(Geom_Curve)& c,
done1 = done2 = Standard_True; done1 = done2 = Standard_True;
} }
} }
catch ( Standard_Failure ) catch ( Standard_Failure const& )
{ {
} }
} }

View File

@ -161,7 +161,7 @@ void ShapeUpgrade_SplitCurve2dContinuity::Compute()
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
corrected = MyBSpline->RemoveKnot(iknot, newMultiplicity, myTolerance); corrected = MyBSpline->RemoveKnot(iknot, newMultiplicity, myTolerance);
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
corrected = Standard_False; corrected = Standard_False;
} }
} }

View File

@ -162,7 +162,7 @@ void ShapeUpgrade_SplitCurve3dContinuity::Compute()
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
corrected = MyBSpline->RemoveKnot(iknot, newMultiplicity, myTolerance); corrected = MyBSpline->RemoveKnot(iknot, newMultiplicity, myTolerance);
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
corrected = Standard_False; corrected = Standard_False;
} }
} }

View File

@ -317,7 +317,7 @@ static Standard_Boolean IsSameDomain(const TopoDS_Face& aFace,
return anIIInt.TangentFaces(); return anIIInt.TangentFaces();
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
return Standard_False; return Standard_False;
} }
} }

View File

@ -184,7 +184,7 @@ Handle(StdObjMgt_Persistent) StdLDrivers_DocumentRetrievalDriver::read (
aFileDriver->ReadReferenceType (aRef, aType); aFileDriver->ReadReferenceType (aRef, aType);
anError = Storage_VSOk; anError = Storage_VSOk;
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
anError = Storage_VSTypeMismatch; anError = Storage_VSTypeMismatch;
} }
@ -208,9 +208,9 @@ Handle(StdObjMgt_Persistent) StdLDrivers_DocumentRetrievalDriver::read (
aReadData.ReadPersistentObject (i); aReadData.ReadPersistentObject (i);
anError = Storage_VSOk; anError = Storage_VSOk;
} }
catch (Storage_StreamTypeMismatchError) { anError = Storage_VSTypeMismatch; } catch (Storage_StreamTypeMismatchError const&) { anError = Storage_VSTypeMismatch; }
catch (Storage_StreamFormatError ) { anError = Storage_VSFormatError; } catch (Storage_StreamFormatError const& ) { anError = Storage_VSFormatError; }
catch (Storage_StreamReadError ) { anError = Storage_VSFormatError; } catch (Storage_StreamReadError const& ) { anError = Storage_VSFormatError; }
raiseOnStorageError (anError); raiseOnStorageError (anError);
} }

View File

@ -560,7 +560,7 @@ void StdPrs_Isolines::addOnSurface (const Handle(BRepAdaptor_HSurface)& theSurfa
} }
} }
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
// ... // ...
} }

View File

@ -447,7 +447,7 @@ void StdSelect_BRepSelectionTool::GetEdgeSensitive (const TopoDS_Shape& theShape
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
cu3d.Initialize (anEdge); cu3d.Initialize (anEdge);
} catch (Standard_NullObject) { } catch (Standard_NullObject const&) {
return; return;
} }
@ -626,7 +626,7 @@ Standard_Boolean StdSelect_BRepSelectionTool::GetSensitiveForFace (const TopoDS_
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
cu3d.Initialize (aWireExplorer.Current()); cu3d.Initialize (aWireExplorer.Current());
} }
catch (Standard_NullObject) catch (Standard_NullObject const&)
{ {
continue; continue;
} }

View File

@ -66,7 +66,7 @@ Storage_Error StdStorage::Read(const TCollection_AsciiString& theFileName,
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
PCDM_ReadWriter::Open(*aDriver, theFileName, Storage_VSRead); PCDM_ReadWriter::Open(*aDriver, theFileName, Storage_VSRead);
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
return Storage_VSOpenError; return Storage_VSOpenError;
} }
@ -134,7 +134,7 @@ Storage_Error StdStorage::Read(Storage_BaseDriver& theDriver,
theDriver.ReadReferenceType(aRef, aType); theDriver.ReadReferenceType(aRef, aType);
anError = Storage_VSOk; anError = Storage_VSOk;
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
anError = Storage_VSTypeMismatch; anError = Storage_VSTypeMismatch;
} }
@ -162,9 +162,9 @@ Storage_Error StdStorage::Read(Storage_BaseDriver& theDriver,
aReadData.ReadPersistentObject(i); aReadData.ReadPersistentObject(i);
anError = Storage_VSOk; anError = Storage_VSOk;
} }
catch (Storage_StreamTypeMismatchError) { anError = Storage_VSTypeMismatch; } catch (Storage_StreamTypeMismatchError const&) { anError = Storage_VSTypeMismatch; }
catch (Storage_StreamFormatError) { anError = Storage_VSFormatError; } catch (Storage_StreamFormatError const&) { anError = Storage_VSFormatError; }
catch (Storage_StreamReadError) { anError = Storage_VSFormatError; } catch (Storage_StreamReadError const&) { anError = Storage_VSFormatError; }
if (anError != Storage_VSOk) if (anError != Storage_VSOk)
return anError; return anError;
@ -311,7 +311,7 @@ Storage_Error StdStorage::Write(Storage_BaseDriver& theDriver,
if (anError != Storage_VSOk) if (anError != Storage_VSOk)
return anError; return anError;
} }
catch (Storage_StreamWriteError) { catch (Storage_StreamWriteError const&) {
return Storage_VSWriteError; return Storage_VSWriteError;
} }

View File

@ -58,13 +58,13 @@ Standard_Boolean StdStorage_HeaderData::Read(Storage_BaseDriver& theDriver)
myDataType, myDataType,
myUserInfo); myUserInfo);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadInfo"; myErrorStatusExt = "ReadInfo";
return Standard_False; return Standard_False;
} }
catch (Storage_StreamExtCharParityError) catch (Storage_StreamExtCharParityError const&)
{ {
myErrorStatus = Storage_VSExtCharParityError; myErrorStatus = Storage_VSExtCharParityError;
myErrorStatusExt = "ReadInfo"; myErrorStatusExt = "ReadInfo";
@ -91,13 +91,13 @@ Standard_Boolean StdStorage_HeaderData::Read(Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.ReadComment(myComments); theDriver.ReadComment(myComments);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadComment"; myErrorStatusExt = "ReadComment";
return Standard_False; return Standard_False;
} }
catch (Storage_StreamExtCharParityError) catch (Storage_StreamExtCharParityError const&)
{ {
myErrorStatus = Storage_VSExtCharParityError; myErrorStatus = Storage_VSExtCharParityError;
myErrorStatusExt = "ReadComment"; myErrorStatusExt = "ReadComment";
@ -146,13 +146,13 @@ Standard_Boolean StdStorage_HeaderData::Write(Storage_BaseDriver& theDriver)
myDataType, myDataType,
myUserInfo); myUserInfo);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "WriteInfo"; myErrorStatusExt = "WriteInfo";
return Standard_False; return Standard_False;
} }
catch (Storage_StreamExtCharParityError) catch (Storage_StreamExtCharParityError const&)
{ {
myErrorStatus = Storage_VSExtCharParityError; myErrorStatus = Storage_VSExtCharParityError;
myErrorStatusExt = "WriteInfo"; myErrorStatusExt = "WriteInfo";
@ -179,13 +179,13 @@ Standard_Boolean StdStorage_HeaderData::Write(Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.WriteComment(myComments); theDriver.WriteComment(myComments);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "WriteComment"; myErrorStatusExt = "WriteComment";
return Standard_False; return Standard_False;
} }
catch (Storage_StreamExtCharParityError) catch (Storage_StreamExtCharParityError const&)
{ {
myErrorStatus = Storage_VSExtCharParityError; myErrorStatus = Storage_VSExtCharParityError;
myErrorStatusExt = "WriteComment"; myErrorStatusExt = "WriteComment";

View File

@ -58,7 +58,7 @@ Standard_Boolean StdStorage_RootData::Read(Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.ReadRoot(aRootName, aRef, aTypeName); theDriver.ReadRoot(aRootName, aRef, aTypeName);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadRoot"; myErrorStatusExt = "ReadRoot";
@ -107,7 +107,7 @@ Standard_Boolean StdStorage_RootData::Write(Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.WriteRoot(aRoot->Name(), aRoot->Reference(), aRoot->Type()); theDriver.WriteRoot(aRoot->Name(), aRoot->Reference(), aRoot->Type());
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadRoot"; myErrorStatusExt = "ReadRoot";

View File

@ -58,7 +58,7 @@ Standard_Boolean StdStorage_TypeData::Read(Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.ReadTypeInformations (aTypeNum, aTypeName); theDriver.ReadTypeInformations (aTypeNum, aTypeName);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadTypeInformations"; myErrorStatusExt = "ReadTypeInformations";
@ -106,7 +106,7 @@ Standard_Boolean StdStorage_TypeData::Write(Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.WriteTypeInformations(i, Type(i)); theDriver.WriteTypeInformations(i, Type(i));
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "WriteTypeInformations"; myErrorStatusExt = "WriteTypeInformations";

View File

@ -494,7 +494,7 @@ Handle(Geom2d_Curve) StepToTopoDS_TranslateEdge::MakePCurve
} }
} }
catch(Standard_Failure) catch(Standard_Failure const&)
{ {
return C2d; return C2d;
} }

View File

@ -60,13 +60,13 @@ Standard_Boolean Storage_HeaderData::Read (Storage_BaseDriver& theDriver)
myDataType, myDataType,
myUserInfo); myUserInfo);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadInfo"; myErrorStatusExt = "ReadInfo";
return Standard_False; return Standard_False;
} }
catch (Storage_StreamExtCharParityError) catch (Storage_StreamExtCharParityError const&)
{ {
myErrorStatus = Storage_VSExtCharParityError; myErrorStatus = Storage_VSExtCharParityError;
myErrorStatusExt = "ReadInfo"; myErrorStatusExt = "ReadInfo";
@ -95,13 +95,13 @@ Standard_Boolean Storage_HeaderData::Read (Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.ReadComment (myComments); theDriver.ReadComment (myComments);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadComment"; myErrorStatusExt = "ReadComment";
return Standard_False; return Standard_False;
} }
catch (Storage_StreamExtCharParityError) catch (Storage_StreamExtCharParityError const&)
{ {
myErrorStatus = Storage_VSExtCharParityError; myErrorStatus = Storage_VSExtCharParityError;
myErrorStatusExt = "ReadComment"; myErrorStatusExt = "ReadComment";

View File

@ -59,7 +59,7 @@ Standard_Boolean Storage_RootData::Read (Storage_BaseDriver& theDriver)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theDriver.ReadRoot (aRootName, aRef, aTypeName); theDriver.ReadRoot (aRootName, aRef, aTypeName);
} }
catch (Storage_StreamTypeMismatchError) catch (Storage_StreamTypeMismatchError const&)
{ {
myErrorStatus = Storage_VSTypeMismatch; myErrorStatus = Storage_VSTypeMismatch;
myErrorStatusExt = "ReadRoot"; myErrorStatusExt = "ReadRoot";

View File

@ -484,7 +484,7 @@ void Storage_Schema::Write
errorContext = "EndWriteDataSection"; errorContext = "EndWriteDataSection";
f.EndWriteDataSection(); f.EndWriteDataSection();
} }
catch(Storage_StreamWriteError) { catch(Storage_StreamWriteError const&) {
aData->SetErrorStatus(Storage_VSWriteError); aData->SetErrorStatus(Storage_VSWriteError);
aData->SetErrorStatusExtension(errorContext); aData->SetErrorStatusExtension(errorContext);
} }

View File

@ -457,7 +457,7 @@ Standard_Integer TColStd_PackedMapOfInteger::GetMinimalMapped () const
} }
if (pFoundNode) { if (pFoundNode) {
unsigned int aFullMask (0xffffffff); unsigned int aFullMask (0xffffffff);
aResult = TColStd_intMapNode_findNext ((const Standard_Address )pFoundNode, aFullMask); aResult = TColStd_intMapNode_findNext ((Standard_Address )pFoundNode, aFullMask);
} }
} }
return aResult; return aResult;
@ -486,7 +486,7 @@ Standard_Integer TColStd_PackedMapOfInteger::GetMaximalMapped () const
} }
if (pFoundNode) { if (pFoundNode) {
unsigned int aFullMask (0xffffffff); unsigned int aFullMask (0xffffffff);
aResult = TColStd_intMapNode_findPrev ((const Standard_Address )pFoundNode, aFullMask); aResult = TColStd_intMapNode_findPrev ((Standard_Address )pFoundNode, aFullMask);
} }
} }
return aResult; return aResult;

View File

@ -54,7 +54,7 @@ TDocStd_Application::TDocStd_Application()
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
S->LoadDriver(); S->LoadDriver();
} }
catch (Plugin_Failure) catch (Plugin_Failure const&)
{ {
myIsDriverLoaded = Standard_False; myIsDriverLoaded = Standard_False;
} }

View File

@ -2106,7 +2106,7 @@ case TNaming_SHELLIN:
break; break;
} }
} }
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
cout << "Name::Solve: EXCEPTION==> NameType = " << NameTypeToString(myType) << " "; cout << "Name::Solve: EXCEPTION==> NameType = " << NameTypeToString(myType) << " ";
PrintEntry(aLab); PrintEntry(aLab);

View File

@ -158,7 +158,7 @@ Standard_Boolean TObj_Model::Load (const TCollection_ExtendedString& theFile)
{ {
isValid = isValid && aLabel.Data() == aDoc->GetData(); isValid = isValid && aLabel.Data() == aDoc->GetData();
} }
catch (Standard_Failure) catch (Standard_Failure const&)
{ {
isValid = Standard_False; isValid = Standard_False;
} }

View File

@ -2179,7 +2179,7 @@ void TPrsStd_ConstraintTools::ComputeRound(const Handle(TDataXtd_Constraint)& aC
} }
} }
} }
catch(Standard_Failure) { catch(Standard_Failure const&) {
ais.Nullify(); ais.Nullify();
} }
} }

View File

@ -181,7 +181,7 @@ Standard_Boolean TopoDSToStep_WireframeBuilder::
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
CA.Initialize (anEdge); CA.Initialize (anEdge);
} }
catch (Standard_NullObject) { catch (Standard_NullObject const&) {
return Standard_False; return Standard_False;
} }

View File

@ -1062,7 +1062,7 @@ Handle(Transfer_Binder) Transfer_TransferProcess::Transferring(const TheStart& s
} }
// ... Exceptions a Rattraper : elles ne se ressemblent pas toutes ... ! // ... Exceptions a Rattraper : elles ne se ressemblent pas toutes ... !
catch (Transfer_TransferDeadLoop) { catch (Transfer_TransferDeadLoop const&) {
if (binder.IsNull()) { if (binder.IsNull()) {
themessenger << " *** Dead Loop with no Result" << endl; themessenger << " *** Dead Loop with no Result" << endl;
if (thetrace) StartTrace (binder, start, thelevel-1,0); if (thetrace) StartTrace (binder, start, thelevel-1,0);

View File

@ -285,7 +285,7 @@ Standard_Boolean V3d_Viewer::AddZLayer (Graphic3d_ZLayerId& theLayerId)
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theLayerId = myZLayerGenId.Next(); theLayerId = myZLayerGenId.Next();
} }
catch (Aspect_IdentDefinitionError) catch (Aspect_IdentDefinitionError const&)
{ {
// new index can't be generated // new index can't be generated
return Standard_False; return Standard_False;

View File

@ -2109,7 +2109,7 @@ static int VCircleBuilder(Draw_Interpretor& /*di*/, Standard_Integer argc, const
{ {
theGeomCircle = Cir.Value(); theGeomCircle = Cir.Value();
} }
catch (StdFail_NotDone) catch (StdFail_NotDone const&)
{ {
std::cout << "vcircle error: can't create circle\n"; std::cout << "vcircle error: can't create circle\n";
return -1; // TCL_ERROR return -1; // TCL_ERROR
@ -2156,7 +2156,7 @@ static int VCircleBuilder(Draw_Interpretor& /*di*/, Standard_Integer argc, const
{ {
theGeomCircle = Cir.Value(); theGeomCircle = Cir.Value();
} }
catch (StdFail_NotDone) catch (StdFail_NotDone const&)
{ {
std::cout << "vcircle error: can't create circle\n"; std::cout << "vcircle error: can't create circle\n";
return -1; // TCL_ERROR return -1; // TCL_ERROR
@ -2222,7 +2222,7 @@ static int VCircleBuilder(Draw_Interpretor& /*di*/, Standard_Integer argc, const
{ {
theGeomCircle = Cir.Value(); theGeomCircle = Cir.Value();
} }
catch (StdFail_NotDone) catch (StdFail_NotDone const&)
{ {
std::cout << "vcircle error: can't create circle\n"; std::cout << "vcircle error: can't create circle\n";
return -1; // TCL_ERROR return -1; // TCL_ERROR
@ -2267,7 +2267,7 @@ static int VCircleBuilder(Draw_Interpretor& /*di*/, Standard_Integer argc, const
{ {
theGeomCircle = Cir.Value(); theGeomCircle = Cir.Value();
} }
catch (StdFail_NotDone) catch (StdFail_NotDone const&)
{ {
std::cout << "vcircle error: can't create circle\n"; std::cout << "vcircle error: can't create circle\n";
return -1; // TCL_ERROR return -1; // TCL_ERROR

View File

@ -79,7 +79,7 @@ const Handle(TopoDS_TShape)& VrmlData_Box::TShape ()
mySize.X(), mySize.Y(), mySize.Z()); mySize.X(), mySize.Y(), mySize.Z());
SetTShape (aShell.TShape()); SetTShape (aShell.TShape());
myIsModified = Standard_False; myIsModified = Standard_False;
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
myTShape.Nullify(); myTShape.Nullify();
} }
} }
@ -159,7 +159,7 @@ const Handle(TopoDS_TShape)& VrmlData_Cone::TShape ()
else else
myTShape = aBuilder.Shell().TShape(); myTShape = aBuilder.Shell().TShape();
myIsModified = Standard_False; myIsModified = Standard_False;
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
myTShape.Nullify(); myTShape.Nullify();
} }
} }
@ -289,7 +289,7 @@ const Handle(TopoDS_TShape)& VrmlData_Cylinder::TShape ()
aShapeBuilder.AddShellFace (aShell, aBuilder.BottomFace()); aShapeBuilder.AddShellFace (aShell, aBuilder.BottomFace());
myTShape = aShell.TShape(); myTShape = aShell.TShape();
myIsModified = Standard_False; myIsModified = Standard_False;
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
myTShape.Nullify(); myTShape.Nullify();
} }
} }
@ -413,7 +413,7 @@ const Handle(TopoDS_TShape)& VrmlData_Sphere::TShape ()
try { try {
myTShape = BRepPrim_Sphere(myRadius).Shell().TShape(); myTShape = BRepPrim_Sphere(myRadius).Shell().TShape();
myIsModified = Standard_False; myIsModified = Standard_False;
} catch (Standard_Failure) { } catch (Standard_Failure const&) {
myTShape.Nullify(); myTShape.Nullify();
} }
} }

View File

@ -79,7 +79,7 @@ static double TetraVol(gp_Pnt RefPoint, gp_Pnt Som1, gp_Pnt Som2, gp_Pnt Som3)
N=v1^v2; N=v1^v2;
Plane123=gp_Pln( Som1, gp_Dir( N ) ); Plane123=gp_Pln( Som1, gp_Dir( N ) );
} }
catch(Standard_Failure) {return(0.);} catch(Standard_Failure const&) {return(0.);}
} }
double L1, L2, L3; double L1, L2, L3;
L1 = Som1.Distance(Som2); L1 = Som1.Distance(Som2);
@ -575,7 +575,7 @@ static Standard_Integer CheckProps (Draw_Interpretor& di, Standard_Integer argc,
( wholeDoc ? "" : "\n" )); ( wholeDoc ? "" : "\n" ));
di << string2; di << string2;
} }
catch (Standard_Failure) { catch (Standard_Failure const&) {
//printf ( "%-16.16s", "exception" ); //printf ( "%-16.16s", "exception" );
char string3[260]; char string3[260];
Sprintf (string3, "%-16.16s", "exception" ); Sprintf (string3, "%-16.16s", "exception" );

Some files were not shown because too many files have changed in this diff Show More