]> git.tdb.fi Git - builder.git/blobdiff - source/binarycomponent.h
Add gcc's private library directory to ClangLinker's system path
[builder.git] / source / binarycomponent.h
index 7c8453420b2cd1cbef60f9cf53829507898e577a..ef145da49da7b6bdea0649412b6782318641d182 100644 (file)
@@ -22,13 +22,11 @@ public:
        };
 
 private:
-       typedef std::list<const Component *> UseList;
-
        Type type;
-       UseList 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; }