rollback types and fix corner case with iterator
This commit is contained in:
@@ -101,6 +101,12 @@ TEST_CASE("ChunkVector")
|
||||
REQUIRE(vec.Capacity() == tempVal);
|
||||
}
|
||||
|
||||
SECTION("Iterators with empty vector")
|
||||
{
|
||||
StableVector<uint32_t> vec;
|
||||
REQUIRE(vec.begin() == vec.end());
|
||||
}
|
||||
|
||||
SECTION("Clear")
|
||||
{
|
||||
StableVector<uint32_t> vec;
|
||||
|
||||
Reference in New Issue
Block a user