1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-29 14:00:49 +03:00

0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]

This commit is contained in:
abv
2015-11-20 21:04:11 +03:00
committed by bugmaster
parent 4d8eca1dce
commit 79104795a1
700 changed files with 2920 additions and 2904 deletions

View File

@@ -52,26 +52,26 @@ public:
Standard_EXPORT TopoDS_Shape LoopToShape (const Handle(TopOpeBRepBuild_Loop)& L);
//! classify wire <B1> with wire <B2>
Standard_EXPORT TopAbs_State CompareShapes (const TopoDS_Shape& B1, const TopoDS_Shape& B2);
Standard_EXPORT TopAbs_State CompareShapes (const TopoDS_Shape& B1, const TopoDS_Shape& B2) Standard_OVERRIDE;
//! classify edge <E> with wire <B>
Standard_EXPORT TopAbs_State CompareElementToShape (const TopoDS_Shape& E, const TopoDS_Shape& B);
Standard_EXPORT TopAbs_State CompareElementToShape (const TopoDS_Shape& E, const TopoDS_Shape& B) Standard_OVERRIDE;
//! prepare classification involving wire <B>
//! calls ResetElement on first edge of <B>
Standard_EXPORT void ResetShape (const TopoDS_Shape& B);
Standard_EXPORT void ResetShape (const TopoDS_Shape& B) Standard_OVERRIDE;
//! prepare classification involving edge <E>
//! define 2D point (later used in Compare()) on first vertex of edge <E>.
Standard_EXPORT void ResetElement (const TopoDS_Shape& E);
Standard_EXPORT void ResetElement (const TopoDS_Shape& E) Standard_OVERRIDE;
//! Add the edge <E> in the set of edges used in 2D point
//! classification.
Standard_EXPORT Standard_Boolean CompareElement (const TopoDS_Shape& E);
Standard_EXPORT Standard_Boolean CompareElement (const TopoDS_Shape& E) Standard_OVERRIDE;
//! Returns state of classification of 2D point, defined by
//! ResetElement, with the current set of edges, defined by Compare.
Standard_EXPORT TopAbs_State State();
Standard_EXPORT TopAbs_State State() Standard_OVERRIDE;