aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-11-10 22:43:09 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-11-13 13:29:05 +0300
commite59343b3267e82aff33a8f73ab82b51345913c06 (patch)
treeea4a76855089af619fdeb542d94824537337d7cc /bpkg/utility.hxx
parent85eff0e9f81a3eeccc67e534f43be7e9f2e75521 (diff)
Add support for vars grouping for package commands
Diffstat (limited to 'bpkg/utility.hxx')
-rw-r--r--bpkg/utility.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/bpkg/utility.hxx b/bpkg/utility.hxx
index c0c361f..accfa99 100644
--- a/bpkg/utility.hxx
+++ b/bpkg/utility.hxx
@@ -7,6 +7,7 @@
#include <memory> // make_shared()
#include <string> // to_string()
+#include <cstring> // strcmp(), strchr()
#include <utility> // move(), forward(), declval(), make_pair()
#include <cassert> // assert()
#include <iterator> // make_move_iterator()
@@ -32,6 +33,9 @@ namespace bpkg
using std::make_move_iterator;
using std::to_string;
+ using std::strcmp;
+ using std::strchr;
+
// <libbutl/utility.mxx>
//
using butl::casecmp;