aboutsummaryrefslogtreecommitdiff
path: root/build2/version/module.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/version/module.hxx')
-rw-r--r--build2/version/module.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/build2/version/module.hxx b/build2/version/module.hxx
index e057e7d..e24ce88 100644
--- a/build2/version/module.hxx
+++ b/build2/version/module.hxx
@@ -26,6 +26,7 @@ namespace build2
butl::standard_version version;
bool committed; // Whether this is a committed snapshot.
+ bool rewritten; // Whether this is a rewritten .z snapshot.
dependency_constraints dependencies;
@@ -36,9 +37,11 @@ namespace build2
module (butl::standard_version v,
bool c,
+ bool r,
dependency_constraints d)
: version (move (v)),
committed (c),
+ rewritten (r),
dependencies (move (d)) {}
};
}