mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-17 19: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:
@@ -345,7 +345,7 @@ static int is_interactive_read;
|
||||
static int end_loop = 0;
|
||||
|
||||
/** The stack containing names of files that are being parsed */
|
||||
static std::stack<const wchar_t *, std::list<const wchar_t *> > current_filename;
|
||||
static std::stack<const wchar_t *, std::vector<const wchar_t *> > current_filename;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user