aboutsummaryrefslogtreecommitdiff
path: root/build2/types
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-21 11:56:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-21 11:56:00 +0200
commit7a528eab1561b0d0d4ec29f98355fe67025ea632 (patch)
tree28a2061f17e3ee625e8674378227a81a8738a6ec /build2/types
parent3db0756adc641e0a63c4c9f194c4f73cceddd90c (diff)
Add support for derived-to-base function overload resolution
Diffstat (limited to 'build2/types')
-rw-r--r--build2/types4
1 files changed, 3 insertions, 1 deletions
diff --git a/build2/types b/build2/types
index 783aff0..b4488bb 100644
--- a/build2/types
+++ b/build2/types
@@ -30,6 +30,7 @@
#include <butl/optional>
#include <butl/timestamp>
#include <butl/vector-view>
+#include <butl/small-vector>
namespace build2
{
@@ -56,7 +57,8 @@ namespace build2
using std::weak_ptr;
using std::vector;
- using butl::vector_view; // <butl/vector-view>
+ using butl::vector_view; // <butl/vector-view>
+ using butl::small_vector; // <butl/small-vector>
using strings = vector<string>;
using cstrings = vector<const char*>;