aboutsummaryrefslogtreecommitdiff
path: root/build2/variable.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-11 14:38:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-11 14:38:00 +0200
commita60da308bfcc003fd07d2b7d848ccb8d166e472a (patch)
tree0616ec5db6a3f6dec5d90194c0adca63ad4e8cdb /build2/variable.cxx
parent5417243b54862d0e5f0214dde2b84eb90a100bf2 (diff)
Redo config inheritance logic
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 ())
{