(svn r11109) -Fix r11106: it is silly to use a std::list for something that is cleary a std::vector (less memory ;) WHOHO!)
This commit is contained in:
@@ -204,7 +204,7 @@ const char *_subdirs[NUM_SUBDIRS] = {
|
||||
};
|
||||
|
||||
const char *_searchpaths[NUM_SEARCHPATHS];
|
||||
std::list<const char *> _tar_list;
|
||||
std::vector<const char *> _tar_list;
|
||||
|
||||
/**
|
||||
* Check whether the given file exists
|
||||
|
Reference in New Issue
Block a user