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

@@ -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;
/**