mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0025912: Exception during reading STEP file with GD&T
add missing "break" statements. Test case for issue CR25912
This commit is contained in:
parent
457b01e271
commit
08e464755d
@ -3724,11 +3724,14 @@ void RWStepAP214_GeneralModule::FillSharedCase(const Standard_Integer CN,
|
||||
RWStepRepr_RWCompositeShapeAspect tool;
|
||||
tool.Share(anent,iter);
|
||||
}
|
||||
case 471: {
|
||||
break;
|
||||
case 471:
|
||||
{
|
||||
DeclareAndCast(StepRepr_DerivedShapeAspect,anent,ent);
|
||||
RWStepRepr_RWDerivedShapeAspect tool;
|
||||
tool.Share(anent,iter);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 472: // same as ShapeAspect
|
||||
{
|
||||
DeclareAndCast(StepRepr_Extension,anent,ent);
|
||||
|
9
tests/bugs/step/bug25912
Executable file
9
tests/bugs/step/bug25912
Executable file
@ -0,0 +1,9 @@
|
||||
puts "============"
|
||||
puts "OCC25912"
|
||||
puts "============"
|
||||
puts ""
|
||||
#######################################################################
|
||||
# Exception during reading STEP file with GD&T
|
||||
#######################################################################
|
||||
|
||||
ReadStep D [locate_data_file bug25912_GDT_exc.stp]
|
Loading…
x
Reference in New Issue
Block a user