diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-09 21:40:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-09 21:40:03 +0200 |
commit | 003a4d697b9944602418fca8c82fa244433512ea (patch) | |
tree | 43b52decef9fa110e9dcdfcb0822afbd7f558358 /bpkg/manifest | |
parent | 3e06cb9f5a8685ea5e3d4201ca622ae46a235d0e (diff) |
Support comment in the repository email manifest value
Diffstat (limited to 'bpkg/manifest')
-rw-r--r-- | bpkg/manifest | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bpkg/manifest b/bpkg/manifest index 6e42085..29ba6fe 100644 --- a/bpkg/manifest +++ b/bpkg/manifest @@ -523,13 +523,15 @@ namespace bpkg class repository_manifest { public: + using email_type = bpkg::email; + repository_location location; butl::optional<repository_role> role; // The following values may only be present for the base repository. // butl::optional<std::string> url; - butl::optional<std::string> email; + butl::optional<email_type> email; butl::optional<std::string> summary; butl::optional<std::string> description; |