Skip to content

Commit 4900430

Browse files
committed
DataCastOp : Fix one case missing break
This doesn't affect behaviour, since none of the other cases would match, aside from the default which does nothing
1 parent 554c9f8 commit 4900430

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/IECore/DataCastOp.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,7 @@ ObjectPtr DataCastOp::doOperation( const CompoundObject * operands )
526526
CASTVECTORDATA( DoubleVector, Box3dVector )
527527
default: break;
528528
}
529+
break;
529530
case HalfVectorDataTypeId:
530531
switch ( targetType )
531532
{

0 commit comments

Comments
 (0)