summaryrefslogtreecommitdiffstats
path: root/searchcommon
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-26 22:49:23 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-26 22:49:23 +0200
commitbf510b140817a0fa81f2651f4899fe45b25ba86f (patch)
tree89fc5ba6f83f6768a65665ddb8eb5569538d35fc /searchcommon
parentda5e7a6f14785d520ac2efae877d489cab8205bf (diff)
Reduce fastos.h dependency.
Diffstat (limited to 'searchcommon')
-rw-r--r--searchcommon/src/vespa/searchcommon/attribute/search_context_params.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/searchcommon/src/vespa/searchcommon/attribute/search_context_params.cpp b/searchcommon/src/vespa/searchcommon/attribute/search_context_params.cpp
index dccfb6c6b27..8b58d2d50c2 100644
--- a/searchcommon/src/vespa/searchcommon/attribute/search_context_params.cpp
+++ b/searchcommon/src/vespa/searchcommon/attribute/search_context_params.cpp
@@ -1,11 +1,10 @@
// Copyright 2017 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/fastos.h>
#include "search_context_params.h"
+#include <cstdint>
#include <limits>
-namespace search {
-namespace attribute {
+namespace search::attribute {
SearchContextParams::SearchContextParams()
: _diversityAttribute(nullptr),
@@ -16,4 +15,3 @@ SearchContextParams::SearchContextParams()
}
}
-}