aboutsummaryrefslogtreecommitdiff
path: root/bpkg/types
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-12-10 08:15:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-12-10 08:15:20 +0200
commit4243d26ab9245b64f141c3733726f931c32eccdc (patch)
tree270f2ca22e0d17d84f9625319b612053b927cf23 /bpkg/types
parenta17c27c85cfcaa2c686bc47d35fc78f646f17f94 (diff)
Add support for passing several packages to pkg-{update,clean} commands
Diffstat (limited to 'bpkg/types')
-rw-r--r--bpkg/types6
1 files changed, 4 insertions, 2 deletions
diff --git a/bpkg/types b/bpkg/types
index a5bda0e..a3779fa 100644
--- a/bpkg/types
+++ b/bpkg/types
@@ -28,8 +28,10 @@ namespace bpkg
using std::size_t;
using std::string;
- using strings = std::vector<string>;
- using cstrings = std::vector<const char*>;
+ using std::vector;
+
+ using strings = vector<string>;
+ using cstrings = vector<const char*>;
using butl::optional;
using butl::nullopt;