diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-01-04 09:49:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-01-04 14:27:16 +0200 |
commit | b62ccc5d017e54beecd72d64d2074473c49192a7 (patch) | |
tree | 3497d3b6da5d9feb29fa5edc8a0713f391ac209d /tests/small-vector | |
parent | 496aee483a5ccfa9c396de84dc0cedd234930ddc (diff) |
Implement small_list, small_forward_list
Note that with VC small_list is never "small" because of the extra "headnode"
that this implementation allocates (see notes in small-list.mxx for details).
Diffstat (limited to 'tests/small-vector')
-rw-r--r-- | tests/small-vector/driver.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/small-vector/driver.cxx b/tests/small-vector/driver.cxx index fe386a4..a9f1584 100644 --- a/tests/small-vector/driver.cxx +++ b/tests/small-vector/driver.cxx @@ -6,7 +6,6 @@ #ifndef __cpp_lib_modules #include <string> -#include <vector> #include <iostream> #endif @@ -25,7 +24,7 @@ import butl.small_vector; using namespace std; using namespace butl; -// Return if v.data() points to somewhere inside v. +// Return true if v.data() points to somewhere inside v. // template <typename T, size_t N> inline bool |