1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +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

@@ -47,7 +47,7 @@ public:
const TopLoc_Location& theLocation);
//! Returns number of dicretization points.
virtual Standard_Integer NbPoints() const
virtual Standard_Integer NbPoints() const Standard_OVERRIDE
{
return myIndices.Length();
}
@@ -60,7 +60,7 @@ public:
virtual void Value(const Standard_Integer theIndex,
Standard_Real& theParameter,
gp_Pnt& thePoint,
gp_Pnt2d& theUV);
gp_Pnt2d& theUV) Standard_OVERRIDE;
DEFINE_STANDARD_RTTI(BRepMesh_EdgeTessellationExtractor, BRepMesh_IEdgeTool)

View File

@@ -48,7 +48,7 @@ public:
const Standard_Real theMinSize);
//! Returns number of dicretization points.
virtual Standard_Integer NbPoints() const
virtual Standard_Integer NbPoints() const Standard_OVERRIDE
{
return myTool->NbPoints();
}
@@ -61,7 +61,7 @@ public:
virtual void Value(const Standard_Integer theIndex,
Standard_Real& theParameter,
gp_Pnt& thePoint,
gp_Pnt2d& theUV);
gp_Pnt2d& theUV) Standard_OVERRIDE;
DEFINE_STANDARD_RTTI(BRepMesh_EdgeTessellator, BRepMesh_IEdgeTool)

View File

@@ -67,7 +67,7 @@ public: //! @name mesher API
const BRepMesh_FastDiscret::Parameters& theParameters);
//! Performs meshing ot the shape.
Standard_EXPORT virtual void Perform();
Standard_EXPORT virtual void Perform() Standard_OVERRIDE;
public: //! @name accessing to parameters.
@@ -121,7 +121,7 @@ public: //! @name plugin API
protected:
Standard_EXPORT virtual void init();
Standard_EXPORT virtual void init() Standard_OVERRIDE;
private: