aboutsummaryrefslogtreecommitdiff
path: root/build2/variable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/variable.cxx')
-rw-r--r--build2/variable.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/variable.cxx b/build2/variable.cxx
index c4e2721..d6a42b3 100644
--- a/build2/variable.cxx
+++ b/build2/variable.cxx
@@ -27,7 +27,7 @@ namespace build2
value::
value (value&& v)
- : type (v.type), state (v.state)
+ : type (v.type), state (v.state), extra (v.extra)
{
if (!null ())
{
@@ -42,7 +42,7 @@ namespace build2
value::
value (const value& v)
- : type (v.type), state (v.state)
+ : type (v.type), state (v.state), extra (v.extra)
{
if (!null ())
{