]> git.tdb.fi Git - builder.git/commitdiff
Fix a shadowed variable warning
authorMikko Rasa <tdb@tdb.fi>
Mon, 26 Dec 2022 10:35:26 +0000 (12:35 +0200)
committerMikko Rasa <tdb@tdb.fi>
Mon, 26 Dec 2022 10:35:26 +0000 (12:35 +0200)
source/customizedtool.cpp

index 0a3f3a5a341238a4a570f76093908d6395bc9cbc..681d87e6c933a97669085e53ae234fce55ed09e1 100644 (file)
@@ -17,7 +17,7 @@ CustomizedTool::CustomizedTool(Tool &t, const Architecture &a):
        aux_suffixes = parent.get_auxiliary_suffixes();
        processing_unit = parent.get_processing_unit();
 
-       set_run([this](const Target &t){ return parent.run(t); });
+       set_run([this](const Target &tgt){ return parent.run(tgt); });
 }
 
 Target *CustomizedTool::create_source(const Component &c, const FS::Path &p) const