aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-06-24 22:12:01 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-06-26 15:29:44 +0300
commit58357d79110a925dcb3cdc734d812f17b6465c17 (patch)
tree2b5f4714e038f1b0cefcca64b427e6ae9772833f /bpkg/utility.hxx
parent86700536f5ca500c4a837d03626f672dcfdbb97d (diff)
Fix build order for test and main packages
Diffstat (limited to 'bpkg/utility.hxx')
-rw-r--r--bpkg/utility.hxx13
1 files changed, 7 insertions, 6 deletions
diff --git a/bpkg/utility.hxx b/bpkg/utility.hxx
index e891f21..4360118 100644
--- a/bpkg/utility.hxx
+++ b/bpkg/utility.hxx
@@ -4,12 +4,13 @@
#ifndef BPKG_UTILITY_HXX
#define BPKG_UTILITY_HXX
-#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()
+#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()
+#include <algorithm> // *
#include <libbutl/ft/lang.hxx>