mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
This commit is contained in:
@@ -156,7 +156,7 @@ class VrmlData_IndexedLineSet : public VrmlData_Geometry
|
||||
* should rebuild the shape presentation.
|
||||
*/
|
||||
Standard_EXPORT virtual const Handle(TopoDS_TShape)&
|
||||
TShape ();
|
||||
TShape () Standard_OVERRIDE;
|
||||
|
||||
/**
|
||||
* Create a copy of this node.
|
||||
@@ -164,25 +164,25 @@ class VrmlData_IndexedLineSet : public VrmlData_Geometry
|
||||
* is not created, but rather the given one is modified.
|
||||
*/
|
||||
Standard_EXPORT virtual Handle(VrmlData_Node)
|
||||
Clone (const Handle(VrmlData_Node)& theOther)const;
|
||||
Clone (const Handle(VrmlData_Node)& theOther)const Standard_OVERRIDE;
|
||||
|
||||
/**
|
||||
* Read the Node from input stream.
|
||||
*/
|
||||
Standard_EXPORT virtual VrmlData_ErrorStatus
|
||||
Read (VrmlData_InBuffer& theBuffer);
|
||||
Read (VrmlData_InBuffer& theBuffer) Standard_OVERRIDE;
|
||||
|
||||
/**
|
||||
* Write the Node to output stream.
|
||||
*/
|
||||
Standard_EXPORT virtual VrmlData_ErrorStatus
|
||||
Write (const char * thePrefix) const;
|
||||
Write (const char * thePrefix) const Standard_OVERRIDE;
|
||||
|
||||
/**
|
||||
* Returns True if the node is default, so that it should not be written.
|
||||
*/
|
||||
Standard_EXPORT virtual Standard_Boolean
|
||||
IsDefault () const;
|
||||
IsDefault () const Standard_OVERRIDE;
|
||||
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user