diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-06 09:44:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-06 09:44:03 +0200 |
commit | ec5411f734eac1fcb63c7ef904c3178df1bc941b (patch) | |
tree | f62405b24629ae0acb56616acffa64a86cfe9776 /bbot/manifest | |
parent | 46f7f0361af208209812cc499c44b7acd8faa8e7 (diff) |
Minor changes to manifest
Diffstat (limited to 'bbot/manifest')
-rw-r--r-- | bbot/manifest | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bbot/manifest b/bbot/manifest index c95e83c..7083ca7 100644 --- a/bbot/manifest +++ b/bbot/manifest @@ -10,7 +10,6 @@ #include <iosfwd> #include <butl/optional> -#include <butl/small-vector> #include <butl/target-triplet> #include <butl/manifest-forward> @@ -53,6 +52,8 @@ namespace bbot bool ignore_unknown); }; + using machine_manifests = std::vector<machine_manifest>; + class LIBBBOT_EXPORT task_request_manifest { public: @@ -68,7 +69,7 @@ namespace bbot // std::string fingerprint; - std::vector<machine_manifest> machines; + machine_manifests machines; public: task_request_manifest () = default; // VC export. @@ -166,7 +167,7 @@ namespace bbot std::string log; }; - using operation_results = butl::small_vector<operation_result, 3>; + using operation_results = std::vector<operation_result>; class LIBBBOT_EXPORT result_manifest { |