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/bench.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/bench.c')
-rw-r--r-- | src/test/bench.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/bench.c b/src/test/bench.c index 49ac7269ef..3cfdd0ae4f 100644 --- a/src/test/bench.c +++ b/src/test/bench.c @@ -29,6 +29,8 @@ #include "or/cell_st.h" #include "or/or_circuit_st.h" +#include "lib/container/bloomfilt.h" + #if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_PROCESS_CPUTIME_ID) static uint64_t nanostart; static inline uint64_t @@ -741,4 +743,3 @@ main(int argc, const char **argv) return 0; } - |