aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-01-19 16:54:39 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-01-19 16:54:39 +0200
commitba99b60aeb8ccdeffc777589b99728395cd28f95 (patch)
tree92d191989ce1ac0b38e6c8a5724d6a28e5716d99 /build2
parent5164c843513212ab1ac1f721c4de04b6a865eb0c (diff)
Get rid of unnecessary mutable
Diffstat (limited to 'build2')
-rw-r--r--build2/prerequisite4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/prerequisite b/build2/prerequisite
index 5dfd1aa..60970d6 100644
--- a/build2/prerequisite
+++ b/build2/prerequisite
@@ -28,8 +28,8 @@ namespace build2
typedef build2::scope scope_type;
const optional<string>& proj;
- target_key tk; // .dir and .out can be relative.
- mutable scope_type* scope; // Can be NULL if tk.dir is absolute.
+ target_key tk; // The .dir and .out members can be relative.
+ scope_type* scope; // Can be NULL if tk.dir is absolute.
static const optional<string> nullproj;