changed DirDetails::children to be a vector, removed costly caching of DirDetailVector

This commit is contained in:
mr-alice 2016-08-19 18:49:42 +02:00
parent 78b8744183
commit f8ed1d3fb7
10 changed files with 124 additions and 116 deletions

View file

@ -242,7 +242,7 @@ public:
FileStorageFlags flags;
uint32_t min_age ; // minimum age of files in this subtree
std::list<DirStub> children;
std::vector<DirStub> children;
std::list<std::string> parent_groups; // parent groups for the shared directory
};