mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-25 23:21:15 -03:00
Switch from std::list to std::vector in a few places to reduce compiled code size
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user