diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-18 14:55:38 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-18 14:55:38 +0300 |
commit | 732dd69e4d9e1b70edffad9829e34d84155cd91b (patch) | |
tree | 4bc1e8b26b1947b982ceb593257c5ab3f1cb268a /libbrep/build.hxx | |
parent | 67d190d15e5a8ad865dbbf21fdf7dcb7b1168cdd (diff) |
Adapt to non-optional buildtab target
Diffstat (limited to 'libbrep/build.hxx')
-rw-r--r-- | libbrep/build.hxx | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/libbrep/build.hxx b/libbrep/build.hxx index 7f0aba6..7edf70c 100644 --- a/libbrep/build.hxx +++ b/libbrep/build.hxx @@ -146,13 +146,9 @@ namespace brep // target_triplet // - using optional_target_triplet = optional<butl::target_triplet>; - - #pragma db map type(optional_target_triplet) as(optional_string) \ - to((?) ? (?)->string () : brep::optional_string ()) \ - from((?) \ - ? butl::target_triplet (*(?)) \ - : brep::optional_target_triplet ()) + #pragma db map type(butl::target_triplet) as(string) \ + to((?).string ()) \ + from(butl::target_triplet (?)) // operation_results // @@ -176,7 +172,7 @@ namespace brep optional<string> agent_fingerprint, optional<string> agent_challenge, string machine, string machine_summary, - optional<butl::target_triplet> target); + butl::target_triplet); build_id id; @@ -206,10 +202,7 @@ namespace brep string machine; string machine_summary; - - // Default for the machine if absent. - // - optional<butl::target_triplet> target; + butl::target_triplet target; // Note that the logs are stored as std::string/TEXT which is Ok since // they are UTF-8 and our database is UTF-8. |