]> git.tdb.fi Git - builder.git/blobdiff - source/datacompile.cpp
Style update: add spaces around assignment operators
[builder.git] / source / datacompile.cpp
index 9e9a2874b071f0d48641f0e6d76c831fe2508dc6..5fa5a53b2d8aa4b8b135754bb59b26a51cc6cff3 100644 (file)
@@ -19,19 +19,19 @@ using namespace Msp;
 DataCompile::DataCompile(Builder &b, ::DataFile &dfile):
        ExternalAction(b)
 {
-       const Component &comp=dfile.get_component();
+       const Component &comp = dfile.get_component();
 
-       work_dir=comp.get_package().get_source();
+       work_dir = comp.get_package().get_source();
 
        argv.push_back("mspdatatool");
        argv.push_back("-c");
        argv.push_back("-b");
 
-       FS::Path opath=dfile.get_path();
+       FS::Path opath = dfile.get_path();
        argv.push_back("-o");
        argv.push_back(relative(opath, work_dir).str());
 
-       FS::Path spath=dfile.get_source().get_path();
+       FS::Path spath = dfile.get_source().get_path();
        argv.push_back(relative(spath, work_dir).str());
 
        if(!builder.get_dry_run())