diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 16:48:54 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-22 09:49:13 -0400 |
commit | 50a5954003a0478273d9e2c1a546e641e763a997 (patch) | |
tree | 2ec3bbbcce748af92c53ddc3744278522fdb884d /src/test/test_containers.c | |
parent | 932b4d0a4342ec281b6f692f23453d6c46026c18 (diff) | |
download | tor-50a5954003a0478273d9e2c1a546e641e763a997.tar.gz tor-50a5954003a0478273d9e2c1a546e641e763a997.zip |
Remove bloom filters, order statistics, and bitarrays from container.h
Diffstat (limited to 'src/test/test_containers.c')
-rw-r--r-- | src/test/test_containers.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/test_containers.c b/src/test/test_containers.c index efc6a181fd..f45082be0b 100644 --- a/src/test/test_containers.c +++ b/src/test/test_containers.c @@ -9,6 +9,10 @@ #include "or/fp_pair.h" #include "test/test.h" +#include "lib/container/bitarray.h" +#include "lib/container/bloomfilt.h" +#include "lib/container/order.h" + /** Helper: return a tristate based on comparing the strings in *<b>a</b> and * *<b>b</b>. */ static int @@ -1295,4 +1299,3 @@ struct testcase_t container_tests[] = { CONTAINER(smartlist_strings_eq, 0), END_OF_TESTCASES }; - |