s/CArray<x,y>/vector<x>/g

This commit is contained in:
Glenn Maynard
2003-01-03 05:56:28 +00:00
parent fdc69927d9
commit 55e92e771d
46 changed files with 121 additions and 124 deletions
+2 -2
View File
@@ -341,7 +341,7 @@ public:
struct CacheEntry {
CStringArray files;
CStringArray exts;
CArray<int,int> Attributes;
vector<int> Attributes;
CString dir;
};
@@ -354,7 +354,7 @@ private:
CacheEntry *LoadDirCache( const CString &sPath );
/* We don't have too many directories ... XXX - glenn */
CArray<CacheEntry *,CacheEntry *> directory_cache;
vector<CacheEntry *> directory_cache;
} static DirectoryCache;
void DirCache::FlushCache()