Switch from std::list to std::vector in a few places to reduce compiled code size

This commit is contained in:
ridiculousfish
2012-07-24 22:31:31 -07:00
parent eba75dbc2e
commit 62c49f13ce
5 changed files with 7 additions and 12 deletions

View File

@@ -964,7 +964,7 @@ void history_tests_t::test_history(void) {
path_list_t paths;
size_t count = rand() % 6;
while (count--) {
paths.push_front(random_string());
paths.push_back(random_string());
}
/* Record this item */