aboutsummaryrefslogtreecommitdiff
path: root/bpkg/types
diff options
context:
space:
mode:
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;