aboutsummaryrefslogtreecommitdiff
path: root/bpkg/package-configuration.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/package-configuration.hxx')
-rw-r--r--bpkg/package-configuration.hxx12
1 files changed, 4 insertions, 8 deletions
diff --git a/bpkg/package-configuration.hxx b/bpkg/package-configuration.hxx
index ba7240e..84f5256 100644
--- a/bpkg/package-configuration.hxx
+++ b/bpkg/package-configuration.hxx
@@ -33,23 +33,19 @@ namespace bpkg
//
build2::config::variable_origin origin;
+ // Variable type name with absent signifying untyped.
+ //
+ optional<string> type;
+
// If origin is not undefined, then this is the reversed variable value
// with absent signifying NULL.
//
optional<build2::names> value;
- // Variable type name with absent signifying untyped.
- //
- optional<string> type;
-
// If origin is buildfile, then this is the "originating dependent" which
// first set this variable to this value.
//
optional<package_key> dependent;
-
- // Value version (used internally by package_skeleton).
- //
- size_t version;
};
class package_configuration: public vector<config_variable_value>