summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-02-08 13:10:37 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-02-08 13:10:37 +0100
commite30cae051e2e13cda9b9380777f54c27422e4336 (patch)
tree8809befc31c950d5c99a0bfa27f7d0eef65b0dad /searchcore
parentca48d9abec5b01afc2ce0a9469d1b140ff0ec67e (diff)
Only include what you need
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/match_thread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/matching/match_thread.h b/searchcore/src/vespa/searchcore/proton/matching/match_thread.h
index f0a8d2bc0c6..6e31e9fd99e 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/match_thread.h
+++ b/searchcore/src/vespa/searchcore/proton/matching/match_thread.h
@@ -2,11 +2,6 @@
#pragma once
-#include <vespa/vespalib/util/runnable.h>
-#include <vespa/vespalib/util/dual_merge_director.h>
-#include <vespa/searchlib/common/resultset.h>
-#include <vespa/searchlib/common/sortresults.h>
-#include <vespa/searchlib/queryeval/hitcollector.h>
#include "match_tools.h"
#include "i_match_loop_communicator.h"
#include "match_params.h"
@@ -14,6 +9,11 @@
#include "partial_result.h"
#include "result_processor.h"
#include "docid_range_scheduler.h"
+#include <vespa/vespalib/util/runnable.h>
+#include <vespa/vespalib/util/dual_merge_director.h>
+#include <vespa/searchlib/common/resultset.h>
+#include <vespa/searchlib/common/sortresults.h>
+#include <vespa/searchlib/queryeval/hitcollector.h>
namespace proton {
namespace matching {