aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-08-12 22:35:04 +0200
committerHenning Baldersheim <balder@oath.com>2018-08-12 22:35:04 +0200
commitd38b49ddb881a67250ed738382d1ff72283cd45b (patch)
tree150bd862d7d66a2928b8b45773102ccedfb50eff /searchcore
parentfded37d945ca2539c96621b9ae33806ebbadf875 (diff)
Remove whitespace
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/fdispatch/search/query.h2
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.cpp2
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/vespa/searchcore/fdispatch/search/query.h b/searchcore/src/vespa/searchcore/fdispatch/search/query.h
index 315e087b4d7..b6949e70d8f 100644
--- a/searchcore/src/vespa/searchcore/fdispatch/search/query.h
+++ b/searchcore/src/vespa/searchcore/fdispatch/search/query.h
@@ -25,7 +25,7 @@ public:
FastS_query(const search::docsummary::GetDocsumArgs &docsumArgs);
~FastS_query();
- void SetStackDump(vespalib::stringref stackDump);
+ void SetStackDump(vespalib::stringref stackDump);
void SetSortSpec(const char *spec) { _sortSpec = spec; }
void SetLocation(const char *loc) { _location = loc; }
void SetRankProperties(const search::fef::Properties &rp) { _rankProperties = rp; }
diff --git a/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.cpp b/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.cpp
index c7a1b7749e1..d165a18ae37 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.cpp
+++ b/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.cpp
@@ -44,7 +44,7 @@ vespalib::string LOOSE_STR("loose");
}
AttributeLimiter::DiversityCutoffStrategy
-AttributeLimiter::toDiversityCutoffStrategy(vespalib::stringref strategy)
+AttributeLimiter::toDiversityCutoffStrategy(vespalib::stringref strategy)
{
return (strategy == STRICT_STR) ? DiversityCutoffStrategy::STRICT : DiversityCutoffStrategy::LOOSE;
}
diff --git a/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.h b/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.h
index 63574ce3dcf..d7772c6a393 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.h
+++ b/searchcore/src/vespa/searchcore/proton/matching/attribute_limiter.h
@@ -34,7 +34,7 @@ public:
search::queryeval::SearchIterator::UP create_search(size_t want_hits, size_t max_group_size, bool strictSearch);
bool was_used() const { return ((!_match_datas.empty()) || (_blueprint.get() != nullptr)); }
ssize_t getEstimatedHits() const { return _estimatedHits; }
- static DiversityCutoffStrategy toDiversityCutoffStrategy(vespalib::stringref strategy);
+ static DiversityCutoffStrategy toDiversityCutoffStrategy(vespalib::stringref strategy);
private:
const vespalib::string & toString(DiversityCutoffStrategy strategy);
search::queryeval::Searchable & _searchable_attributes;