diff options
Diffstat (limited to 'tests/small-vector')
-rw-r--r-- | tests/small-vector/buildfile | 4 | ||||
-rw-r--r-- | tests/small-vector/driver.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/small-vector/buildfile b/tests/small-vector/buildfile index 12f8603..52285d8 100644 --- a/tests/small-vector/buildfile +++ b/tests/small-vector/buildfile @@ -2,6 +2,6 @@ # copyright : Copyright (c) 2014-2017 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -exe{driver}: cxx{driver} ../../butl/lib{butl} +exe{driver}: cxx{driver} ../../libbutl/lib{butl} -include ../../butl/ +include ../../libbutl/ diff --git a/tests/small-vector/driver.cxx b/tests/small-vector/driver.cxx index f4914de..c7cafd4 100644 --- a/tests/small-vector/driver.cxx +++ b/tests/small-vector/driver.cxx @@ -6,7 +6,7 @@ #include <cassert> #include <iostream> -#include <butl/small-vector> +#include <libbutl/small-vector.hxx> using namespace std; using namespace butl; |