mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Fixed memory leaks
This commit is contained in:
parent
787e7ef616
commit
d5382a293b
@ -1220,6 +1220,8 @@ TEST_CASE("md_access")
|
||||
expected += 3;
|
||||
}
|
||||
}
|
||||
|
||||
delete[] image_ptr;
|
||||
}
|
||||
|
||||
GSL_SUPPRESS(con.4) // NO-FORMAT: attribute
|
||||
@ -1616,6 +1618,8 @@ TEST_CASE("span_structure_size")
|
||||
multi_span<const double, dynamic_range, 6, 4> av2 =
|
||||
as_multi_span(av1, dim(5), dim<6>(), dim<4>());
|
||||
(void) av2;
|
||||
|
||||
delete[] arr;
|
||||
}
|
||||
|
||||
GSL_SUPPRESS(con.4) // NO-FORMAT: attribute
|
||||
|
Loading…
Reference in New Issue
Block a user