aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/index/indexcollection_test.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-02 14:41:57 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-02 14:41:57 +0200
commit5bbc8f20f3d206254f648a210372e30a1b39f46f (patch)
tree7197e9908c0c0ab199ad05a8e32de1f58cf9d0d8 /searchcore/src/tests/proton/index/indexcollection_test.cpp
parent0f646f10b377b90fc37e9911f9fe383d112ff157 (diff)
Fix warnings hidden earlier due to including application headers as system includes
Diffstat (limited to 'searchcore/src/tests/proton/index/indexcollection_test.cpp')
-rw-r--r--searchcore/src/tests/proton/index/indexcollection_test.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/searchcore/src/tests/proton/index/indexcollection_test.cpp b/searchcore/src/tests/proton/index/indexcollection_test.cpp
index b6c98e1631e..e78baadb4de 100644
--- a/searchcore/src/tests/proton/index/indexcollection_test.cpp
+++ b/searchcore/src/tests/proton/index/indexcollection_test.cpp
@@ -1,16 +1,13 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/fastos.h>
-#include <vespa/log/log.h>
-LOG_SETUP("indexcollection_test");
#include <vespa/searchcore/proton/matching/fakesearchcontext.h>
-#include <vespa/searchcorespi/index/indexcollection.h>
#include <vespa/searchcorespi/index/warmupindexcollection.h>
-#include <vespa/searchlib/queryeval/fake_searchable.h>
-#include <vespa/searchlib/attribute/fixedsourceselector.h>
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/vespalib/util/threadstackexecutor.h>
+#include <vespa/log/log.h>
+LOG_SETUP("indexcollection_test");
+
using search::queryeval::ISourceSelector;
using search::queryeval::FakeSearchable;
using search::FixedSourceSelector;
@@ -46,6 +43,7 @@ public:
_executor(1, 128*1024),
_warmup(new FakeIndexSearchable)
{}
+ ~Test() {}
int Main() override;
};