summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/bitcompression
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-08-18 23:09:43 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-08-18 23:09:43 +0200
commitbe621ff4d3124c54fe86577a672f73522fd3323c (patch)
treea3bd524db43613518dd7ba840c233b8232a7a680 /searchlib/src/tests/bitcompression
parented2c63f77550376ffcd062b429d0b180adfc8135 (diff)
Include what you need.
Diffstat (limited to 'searchlib/src/tests/bitcompression')
-rw-r--r--searchlib/src/tests/bitcompression/expgolomb/expgolomb_test.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/searchlib/src/tests/bitcompression/expgolomb/expgolomb_test.cpp b/searchlib/src/tests/bitcompression/expgolomb/expgolomb_test.cpp
index c6045208a1f..185b36ec414 100644
--- a/searchlib/src/tests/bitcompression/expgolomb/expgolomb_test.cpp
+++ b/searchlib/src/tests/bitcompression/expgolomb/expgolomb_test.cpp
@@ -1,10 +1,12 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/log/log.h>
-LOG_SETUP("expglomb_test");
#include <vespa/searchlib/bitcompression/compression.h>
#include <vespa/vespalib/testkit/testapp.h>
#include <vector>
+#include <algorithm>
+
+#include <vespa/log/log.h>
+LOG_SETUP("expglomb_test");
using search::bitcompression::DecodeContext64;
using search::bitcompression::DecodeContext64Base;