aboutsummaryrefslogtreecommitdiff
path: root/libbpkg/manifest.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-07-25 17:34:11 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-07-26 18:36:20 +0300
commitad801af7a975a5400f798c77d3d9cdaf3ed5121a (patch)
tree4cd96f790ac676bcd5e0d94ff664bdbe889b5664 /libbpkg/manifest.cxx
parent1cc00d5481b0563fac92b74b0dc80d57c5e992bc (diff)
Use butl::small_vector instead of std::vector where it makes sense
Diffstat (limited to 'libbpkg/manifest.cxx')
-rw-r--r--libbpkg/manifest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbpkg/manifest.cxx b/libbpkg/manifest.cxx
index e27af54..bba616f 100644
--- a/libbpkg/manifest.cxx
+++ b/libbpkg/manifest.cxx
@@ -1665,7 +1665,7 @@ namespace bpkg
// manifest_parsing otherwise.
//
auto parse_list = [&bad_name, &bad_value] (const string& v,
- strings& r,
+ small_vector<string, 5>& r,
char delim,
bool single_word,
bool truncate,