mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-09-05 04:07:58 +08:00
0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
This commit is contained in:
@@ -50,11 +50,11 @@ public:
|
||||
|
||||
void Set (const Handle(Adaptor3d_HSurface)& S);
|
||||
|
||||
Standard_EXPORT Standard_Boolean Value (const Standard_Real X, Standard_Real& F);
|
||||
Standard_EXPORT Standard_Boolean Value (const Standard_Real X, Standard_Real& F) Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT Standard_Boolean Derivative (const Standard_Real X, Standard_Real& D);
|
||||
Standard_EXPORT Standard_Boolean Derivative (const Standard_Real X, Standard_Real& D) Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT Standard_Boolean Values (const Standard_Real X, Standard_Real& F, Standard_Real& D);
|
||||
Standard_EXPORT Standard_Boolean Values (const Standard_Real X, Standard_Real& F, Standard_Real& D) Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT Standard_Integer NbSamples() const;
|
||||
|
||||
|
||||
@@ -48,9 +48,9 @@ public:
|
||||
|
||||
Standard_EXPORT virtual Standard_Boolean Closed() const Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT Standard_Integer NbPoints() const;
|
||||
Standard_EXPORT Standard_Integer NbPoints() const Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT gp_Pnt2d Point (const Standard_Integer Index) const;
|
||||
Standard_EXPORT gp_Pnt2d Point (const Standard_Integer Index) const Standard_OVERRIDE;
|
||||
|
||||
Standard_EXPORT Standard_Real Parameter (const Standard_Integer Index) const;
|
||||
|
||||
|
||||
@@ -125,10 +125,10 @@ public:
|
||||
Standard_Boolean HasPolygon() const;
|
||||
|
||||
//! Returns the number of intersection points.
|
||||
Standard_Integer NbPnts() const;
|
||||
Standard_Integer NbPnts() const Standard_OVERRIDE;
|
||||
|
||||
//! Returns the intersection point of range Index.
|
||||
const IntSurf_PntOn2S& Point (const Standard_Integer Index) const;
|
||||
const IntSurf_PntOn2S& Point (const Standard_Integer Index) const Standard_OVERRIDE;
|
||||
|
||||
//! Set the Point of index <Index> in the LineOn2S
|
||||
Standard_EXPORT void SetPoint (const Standard_Integer Index, const IntPatch_Point& Pnt);
|
||||
|
||||
@@ -79,10 +79,10 @@ public:
|
||||
void SetLastPoint (const Standard_Integer IndLast);
|
||||
|
||||
//! Returns the number of intersection points.
|
||||
Standard_Integer NbPnts() const;
|
||||
Standard_Integer NbPnts() const Standard_OVERRIDE;
|
||||
|
||||
//! Returns the intersection point of range Index.
|
||||
const IntSurf_PntOn2S& Point (const Standard_Integer Index) const;
|
||||
const IntSurf_PntOn2S& Point (const Standard_Integer Index) const Standard_OVERRIDE;
|
||||
|
||||
//! Returns True if the line has a known First point.
|
||||
//! This point is given by the method FirstPoint().
|
||||
|
||||
Reference in New Issue
Block a user