From: Mikko Rasa Date: Mon, 16 Jul 2012 20:47:37 +0000 (+0300) Subject: ComponentList typedef isn't needed outside of SourcePackage X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=30aa066f674421268abc6c79bf828e005ac50031;p=builder.git ComponentList typedef isn't needed outside of SourcePackage --- diff --git a/source/component.h b/source/component.h index 292f140..5f1332f 100644 --- a/source/component.h +++ b/source/component.h @@ -78,6 +78,4 @@ protected: PathList collect_source_files() const; }; -typedef std::list ComponentList; - #endif diff --git a/source/sourcepackage.h b/source/sourcepackage.h index 5b4ffd0..20461fb 100644 --- a/source/sourcepackage.h +++ b/source/sourcepackage.h @@ -51,6 +51,8 @@ public: void tar_file(const std::string &); }; + typedef std::list ComponentList; + private: std::string version; std::string description;