X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsharedlibrary.h;h=564b2102004d714da37d3042dd682cf37e488b95;hb=d1f9551e05c9d341149eb490e05b1465d3d6b711;hp=c40bccd3bfde548e21efdf2d7b132c93e1eb835b;hpb=82ae60a647ebb9567f7177c353245f4d72faaf5e;p=builder.git diff --git a/source/sharedlibrary.h b/source/sharedlibrary.h index c40bccd..564b210 100644 --- a/source/sharedlibrary.h +++ b/source/sharedlibrary.h @@ -19,16 +19,16 @@ class SharedLibrary: public Binary private: std::string libname; std::string soname; - ImportLibrary *import_lib; + ImportLibrary *import_lib = 0; public: SharedLibrary(Builder &, const Msp::FS::Path &); - SharedLibrary(Builder &, const Component &, const std::list &); + SharedLibrary(Builder &, const Component &, const std::vector &); private: static std::string generate_filename(const Component &); public: - virtual const char *get_type() const { return "SharedLibrary"; } + const char *get_type() const override { return "SharedLibrary"; } const std::string &get_libname() const { return libname; } const std::string &get_soname() const { return soname; }