mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
0024830: Remove redundant keyword 'mutable' in CDL declarations
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
This commit is contained in:
@@ -28,15 +28,15 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DrawableMesh from MeshTest;
|
||||
Create returns DrawableMesh from MeshTest;
|
||||
|
||||
Create(S : Shape from TopoDS; Deflect : Real;
|
||||
Partage : Boolean; InShape: Boolean from Standard= Standard_False)
|
||||
returns mutable DrawableMesh from MeshTest;
|
||||
returns DrawableMesh from MeshTest;
|
||||
|
||||
|
||||
Create(Tr: FastDiscret from BRepMesh)
|
||||
returns mutable DrawableMesh from MeshTest;
|
||||
returns DrawableMesh from MeshTest;
|
||||
|
||||
AddInShape(me: mutable; inshape: Boolean)
|
||||
is static;
|
||||
@@ -58,7 +58,7 @@ is
|
||||
|
||||
DrawOn(me; dis : in out Display from Draw);
|
||||
|
||||
Copy(me) returns mutable Drawable3D from Draw
|
||||
Copy(me) returns Drawable3D from Draw
|
||||
is redefined;
|
||||
|
||||
Dump(me; S : in out OStream)
|
||||
@@ -67,7 +67,7 @@ is
|
||||
Whatis(me; S : in out Interpretor from Draw)
|
||||
is redefined;
|
||||
|
||||
Mesh(me) returns mutable FastDiscret from BRepMesh
|
||||
Mesh(me) returns FastDiscret from BRepMesh
|
||||
is static;
|
||||
|
||||
fields
|
||||
|
Reference in New Issue
Block a user