aboutsummaryrefslogtreecommitdiff
path: root/bbot/machine-manifest.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2023-05-11 09:24:51 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2023-05-11 09:24:51 +0200
commit24980c2ae899707ed98b33971381502265fe0269 (patch)
treecc7c425939f4c0770d89e3699ae79a1ef93297fb /bbot/machine-manifest.hxx
parentd6594fffcb4ccbfd16f4bb260daad667273cb065 (diff)
Return locked machines from enumerate_machines()
This is the ground work for the task priority/interrupt support.
Diffstat (limited to 'bbot/machine-manifest.hxx')
-rw-r--r--bbot/machine-manifest.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bbot/machine-manifest.hxx b/bbot/machine-manifest.hxx
index 1e3a4c3..116dc32 100644
--- a/bbot/machine-manifest.hxx
+++ b/bbot/machine-manifest.hxx
@@ -56,7 +56,7 @@ namespace bbot
changes (std::move (c)) {}
public:
- machine_manifest () = default; // VC export.
+ machine_manifest () = default;
machine_manifest (butl::manifest_parser&, bool ignore_unknown = false);
machine_manifest (butl::manifest_parser&,
butl::manifest_name_value start,
@@ -80,7 +80,7 @@ namespace bbot
toolchain_manifest (string i): id (i) {}
public:
- toolchain_manifest () = default; // VC export.
+ toolchain_manifest () = default;
toolchain_manifest (butl::manifest_parser&, bool ignore_unknown = false);
toolchain_manifest (butl::manifest_parser&,
butl::manifest_name_value start,
@@ -106,7 +106,7 @@ namespace bbot
: machine (move (m)), toolchain (move (t)), bootstrap (move (b)) {}
public:
- bootstrapped_machine_manifest () = default; // VC export.
+ bootstrapped_machine_manifest () = default;
bootstrapped_machine_manifest (butl::manifest_parser&,
bool ignore_unknown = false);