aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-03-01 16:04:10 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-03-01 16:04:10 +0000
commit9298ba38f3f62ec7f6a27403fa663f31f366a604 (patch)
tree5c7457a24ed430d1b31938d57f6c35992a3f8d76 /searchsummary
parentf66e4be5877a7e5556511ccfe9ecc5ecab4d5366 (diff)
Reduce transitive includes.
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/vespa/juniper/Matcher.cpp6
-rw-r--r--searchsummary/src/vespa/juniper/sumdesc.cpp1
-rw-r--r--searchsummary/src/vespa/juniper/tokenizer.cpp1
3 files changed, 6 insertions, 2 deletions
diff --git a/searchsummary/src/vespa/juniper/Matcher.cpp b/searchsummary/src/vespa/juniper/Matcher.cpp
index 22d1bbc7e96..73362aac5a3 100644
--- a/searchsummary/src/vespa/juniper/Matcher.cpp
+++ b/searchsummary/src/vespa/juniper/Matcher.cpp
@@ -1,7 +1,5 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <algorithm>
-#include <string>
#include "query.h"
#include "juniperdebug.h"
#include "sumdesc.h"
@@ -10,6 +8,10 @@
#include "juniperparams.h"
#include "config.h"
#include <sstream>
+#include <algorithm>
+#include <string>
+#include <cinttypes>
+
#include <vespa/log/log.h>
LOG_SETUP(".juniper.matcher");
diff --git a/searchsummary/src/vespa/juniper/sumdesc.cpp b/searchsummary/src/vespa/juniper/sumdesc.cpp
index 18e1b7bbd11..aa6aededa0c 100644
--- a/searchsummary/src/vespa/juniper/sumdesc.cpp
+++ b/searchsummary/src/vespa/juniper/sumdesc.cpp
@@ -6,6 +6,7 @@
#include "Matcher.h"
#include "appender.h"
#include <vespa/fastlib/text/unicodeutil.h>
+#include <cinttypes>
#include <vespa/log/log.h>
LOG_SETUP(".juniper.sumdesc");
diff --git a/searchsummary/src/vespa/juniper/tokenizer.cpp b/searchsummary/src/vespa/juniper/tokenizer.cpp
index 1b58be2d451..965befe01e3 100644
--- a/searchsummary/src/vespa/juniper/tokenizer.cpp
+++ b/searchsummary/src/vespa/juniper/tokenizer.cpp
@@ -3,6 +3,7 @@
#include "tokenizer.h"
#include "juniperdebug.h"
#include <vespa/fastlib/text/wordfolder.h>
+#include <cinttypes>
#include <vespa/log/log.h>
LOG_SETUP(".juniper.tokenizer");