From 3ddab9d7360213cda421ac25f62cbf7ef92b513b Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 19 Oct 2017 18:00:33 +0300 Subject: Add support for machine_manifest changes value --- bbot/machine-manifest.hxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'bbot/machine-manifest.hxx') diff --git a/bbot/machine-manifest.hxx b/bbot/machine-manifest.hxx index efcdda4..47dd7ac 100644 --- a/bbot/machine-manifest.hxx +++ b/bbot/machine-manifest.hxx @@ -36,6 +36,7 @@ namespace bbot machine_type type; optional mac; // Required in bootstrapped machine manifest. optional options; // Note: could be quoted. + strings changes; strings unquoted_options () const; // Return empty if absent. @@ -45,13 +46,15 @@ namespace bbot std::string s, machine_type t, optional m, - optional o) + optional o, + strings c) : machine_header_manifest (std::move (i), std::move (n), std::move (s)), type (t), mac (std::move (m)), - options (std::move (o)) {} + options (std::move (o)), + changes (std::move (c)) {} public: machine_manifest () = default; // VC export. -- cgit v1.1