separate make pair

This commit is contained in:
hugogogo
2022-07-01 11:56:23 +02:00
parent ae646ee58a
commit 6e230109db
10 changed files with 104 additions and 1119 deletions

View File

@@ -403,6 +403,18 @@ TEST_M(tests_map_erase)
PRINT(mymap)
// title
TITLE(big tree)
int i;
for (i = 0; i < 10000; i++)
mymap[VALT(i)]=VALU(i);
while (i)
mymap.erase (VAL(i--));
PRINT(mymap)
DELETE
}