mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-13 06:37:18 +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:
@@ -40,11 +40,11 @@ uses GeneralModifier, SequenceOfGeneralModifier,
|
||||
|
||||
is
|
||||
|
||||
Create (nbmax,nbent : Integer) returns mutable AppliedModifiers;
|
||||
Create (nbmax,nbent : Integer) returns AppliedModifiers;
|
||||
---Purpose : Creates an AppliedModifiers, ready to record up to <nbmax>
|
||||
-- modifiers, on a model of <nbent> entities
|
||||
|
||||
AddModif (me : mutable; modif : mutable GeneralModifier) returns Boolean;
|
||||
AddModif (me : mutable; modif : GeneralModifier) returns Boolean;
|
||||
---Purpose : Records a modifier. By default, it is to apply on all a
|
||||
-- produced file. Further calls to AddNum will restrict this.
|
||||
-- Returns True if done, False if too many modifiers are already
|
||||
@@ -61,7 +61,7 @@ is
|
||||
---Purpose : Returns the count of recorded modifiers
|
||||
|
||||
Item (me : mutable; num : Integer;
|
||||
modif : out mutable GeneralModifier; entcount : out Integer)
|
||||
modif : out GeneralModifier; entcount : out Integer)
|
||||
returns Boolean;
|
||||
---Purpose : Returns the description for applied modifier n0 <num> :
|
||||
-- the modifier itself, and the count of entities to be applied
|
||||
|
||||
Reference in New Issue
Block a user