diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-12-21 19:03:13 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-12-21 19:03:13 +0300 |
commit | 47699cde2e697b9b46b66508f0250801e0255f21 (patch) | |
tree | 103b7657788871ba2681cc564e476afb18d40040 | |
parent | d259750511b3c2aaeace49f8ccb1d7f3ad561452 (diff) |
Use butl::small_vector for package manifest license alternatives
-rw-r--r-- | libbrep/package.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbrep/package.hxx b/libbrep/package.hxx index 38ca0ec..7c214f7 100644 --- a/libbrep/package.hxx +++ b/libbrep/package.hxx @@ -79,7 +79,7 @@ namespace brep // licenses // using bpkg::licenses; - using license_alternatives = vector<licenses>; + using license_alternatives = small_vector<licenses, 1>; #pragma db value(licenses) definition |