diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-19 16:54:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-19 16:54:39 +0200 |
commit | ba99b60aeb8ccdeffc777589b99728395cd28f95 (patch) | |
tree | 92d191989ce1ac0b38e6c8a5724d6a28e5716d99 | |
parent | 5164c843513212ab1ac1f721c4de04b6a865eb0c (diff) |
Get rid of unnecessary mutable
-rw-r--r-- | build2/prerequisite | 4 |
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; |