From a60da308bfcc003fd07d2b7d848ccb8d166e472a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 11 Apr 2016 14:38:00 +0200 Subject: Redo config inheritance logic --- build2/variable.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build2/variable.cxx') 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 ()) { -- cgit v1.1