X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilder.h;h=331c50ab9a57be2c92fb2ed91a4fab98c598d2b0;hb=d1f9551e05c9d341149eb490e05b1465d3d6b711;hp=5d62a9a1ec759b1d6d2e06eb91aa363cfcb617a6;hpb=6b84e1f5673888753cbe566c1365222ed33fd3ac;p=builder.git diff --git a/source/builder.h b/source/builder.h index 5d62a9a..331c50a 100644 --- a/source/builder.h +++ b/source/builder.h @@ -47,9 +47,9 @@ private: PackageManager package_manager; Architecture native_arch; - Architecture *current_arch; + Architecture *current_arch = 0; std::map build_types; - BuildType *build_type; + BuildType *build_type = 0; Toolchain toolchain; VirtualFileSystem vfs; BuildGraph build_graph; @@ -57,9 +57,9 @@ private: const Logger *logger; Msp::FS::Path prefix; - Msp::FS::Path tempdir; + Msp::FS::Path tempdir = "temp"; - Loader *top_loader; + Loader *top_loader = 0; public: Builder();