]> git.tdb.fi Git - builder.git/blobdiff - source/component.cpp
Remove most container typedefs and refactor others
[builder.git] / source / component.cpp
index 963625122005f7fdff8837ba5372deaf0cd4f02a..98b6ff76590e1067709895ed1277d6535ed61e58 100644 (file)
@@ -88,14 +88,14 @@ BuildInfo Component::get_build_info_for_path(const FS::Path &path) const
        return binfo;
 }
 
-Component::SourceList Component::collect_source_files() const
+list<FS::Path> Component::collect_source_files() const
 {
-       SourceList files;
+       list<FS::Path> files;
        for(const FS::Path &p: sources)
        {
                if(FS::is_dir(p))
                {
-                       SourceList dirs;
+                       list<FS::Path> dirs;
                        dirs.push_back(p);
                        for(const string &o: overlays)
                        {