]> git.tdb.fi Git - builder.git/blobdiff - source/binarycomponent.h
Redesign GnuLinker to work without subtools
[builder.git] / source / binarycomponent.h
index c31fff2582eff09ee327ad4021fd3c49b97cea7e..ef145da49da7b6bdea0649412b6782318641d182 100644 (file)
@@ -23,10 +23,10 @@ public:
 
 private:
        Type type;
-       std::list<const Component *> uses;
+       std::vector<const Component *> uses;
 
 public:
-       BinaryComponent(SourcePackage &, const std::string &, Type);
+       BinaryComponent(SourcePackage &p, const std::string &n, Type t): Component(p, n), type(t) { }
 
        Type get_type() const { return type; }