X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftool.cpp;h=cefbb8c3b0188c58d525b87def1a5b694f3a40df;hb=b1c51196b34f644e821f351c2acdb48619aed2e3;hp=a2c61bf1f24ffa9cd48f4add29e0501c64f47343;hpb=3e8f3a5e852e9dd5b78ec3d89c722ef1bae6bef5;p=builder.git diff --git a/source/tool.cpp b/source/tool.cpp index a2c61bf..cefbb8c 100644 --- a/source/tool.cpp +++ b/source/tool.cpp @@ -5,6 +5,14 @@ using namespace std; Tool::Tool(Builder &b, const string &t): builder(b), + architecture(0), + tag(t), + executable(0) +{ } + +Tool::Tool(Builder &b, const Architecture &a, const string &t): + builder(b), + architecture(&a), tag(t), executable(0) { }