aboutsummaryrefslogtreecommitdiff
path: root/build2/rule.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-02-07 08:09:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-02-13 12:42:42 +0200
commit7b9eb752cad04aaadc4552d0f26d307b04af1869 (patch)
treed19cdb450ddec384ec41d9129f8d4afecc14acb7 /build2/rule.cxx
parentbe773edfa2c8f8f3230509bbd713542d20fbb37e (diff)
Pass const target& to recipes
Diffstat (limited to 'build2/rule.cxx')
-rw-r--r--build2/rule.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/rule.cxx b/build2/rule.cxx
index 88c7941..922a4f7 100644
--- a/build2/rule.cxx
+++ b/build2/rule.cxx
@@ -163,7 +163,7 @@ namespace build2
}
target_state fsdir_rule::
- perform_update (action a, target& t)
+ perform_update (action a, const target& t)
{
target_state ts (target_state::unchanged);
@@ -203,7 +203,7 @@ namespace build2
}
target_state fsdir_rule::
- perform_clean (action a, target& t)
+ perform_clean (action a, const target& t)
{
// The reverse order of update: first delete this directory,
// then clean prerequisites (e.g., delete parent directories).