From 75b851ff3012f2e6700daf5f9716c536b6ecc887 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 13 Apr 2017 16:14:49 +0300 Subject: Add ctor for task_manifest --- bbot/manifest | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/bbot/manifest b/bbot/manifest index c5a321a..51b0b8b 100644 --- a/bbot/manifest +++ b/bbot/manifest @@ -93,6 +93,19 @@ namespace bbot // variables config; + task_manifest (std::string n, + bpkg::version v, + bpkg::repository_location r, + std::string m, + butl::optional t, + variables c) + : name (std::move (n)), + version (std::move (v)), + repository (std::move (r)), + machine (std::move (m)), + target (std::move (t)), + config (std::move (c)) {} + public: task_manifest () = default; // VC export. task_manifest (butl::manifest_parser&, bool ignore_unknown = false); -- cgit v1.1