Skip to content

Commit 8bfbad8

Browse files
Andrew MillerRandall Britten
authored andcommitted
Fix a delete that should have been a delete []
1 parent 5565771 commit 8bfbad8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/FieldmlDOM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ class IntVectorParser :
387387

388388
~IntVectorParser()
389389
{
390-
delete values;
390+
delete [] values;
391391
}
392392
};
393393

0 commit comments

Comments
 (0)