mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-11 09:32:38 +08: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:
@@ -26,12 +26,12 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable SiUnit;
|
||||
Create returns SiUnit;
|
||||
---Purpose: Returns a SiUnit
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aDimensions : mutable DimensionalExponents from StepBasic) is redefined;
|
||||
aDimensions : DimensionalExponents from StepBasic) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
hasAprefix : Boolean from Standard;
|
||||
@@ -46,8 +46,8 @@ is
|
||||
HasPrefix (me) returns Boolean;
|
||||
SetName(me : mutable; aName : SiUnitName);
|
||||
Name (me) returns SiUnitName;
|
||||
SetDimensions(me : mutable; aDimensions : mutable DimensionalExponents) is redefined;
|
||||
Dimensions (me) returns mutable DimensionalExponents is redefined;
|
||||
SetDimensions(me : mutable; aDimensions : DimensionalExponents) is redefined;
|
||||
Dimensions (me) returns DimensionalExponents is redefined;
|
||||
|
||||
fields
|
||||
|
||||
|
||||
Reference in New Issue
Block a user