X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcomponent.cpp;h=98b6ff76590e1067709895ed1277d6535ed61e58;hb=564160e126f525dda52f27044d29b479088da191;hp=963625122005f7fdff8837ba5372deaf0cd4f02a;hpb=b45cfe5e437ca79bb3176618769628c58c0734d1;p=builder.git diff --git a/source/component.cpp b/source/component.cpp index 9636251..98b6ff7 100644 --- a/source/component.cpp +++ b/source/component.cpp @@ -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 Component::collect_source_files() const { - SourceList files; + list files; for(const FS::Path &p: sources) { if(FS::is_dir(p)) { - SourceList dirs; + list dirs; dirs.push_back(p); for(const string &o: overlays) {