From 499a78602432c4926004f859d5fe957c313adc09 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 19 Nov 2016 18:04:00 +0200 Subject: Add small_vector class template It has a (mostly) std::vector interface (it derives from it) and will store up to N elements in the same storage as the vector instance itself. --- tests/small-vector/buildfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/small-vector/buildfile (limited to 'tests/small-vector/buildfile') diff --git a/tests/small-vector/buildfile b/tests/small-vector/buildfile new file mode 100644 index 0000000..78d2d06 --- /dev/null +++ b/tests/small-vector/buildfile @@ -0,0 +1,8 @@ +# file : tests/small-vector/buildfile +# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +exe{driver}: cxx{driver} ../../butl/lib{butl} +exe{driver}: test.arguments = $src_root + +include ../../butl/ -- cgit v1.1