aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-05-30 14:22:24 +0200
committerGitHub <noreply@github.com>2024-05-30 14:22:24 +0200
commit168311c0e9832c31f371bc56d52c6d09dca89378 (patch)
tree71adb5016c6de6ff38e07859fc6361acef6987bc
parentfe295d7f1b19b311cf04706c489c3f64c6398334 (diff)
parent4a49a310d7883804890015a4190fcc3e49e6bc22 (diff)
Merge pull request #31363 from vespa-engine/toregge/match-tools-style-fix
Style fix: empty line between member functions.
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/match_tools.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/matching/match_tools.cpp b/searchcore/src/vespa/searchcore/proton/matching/match_tools.cpp
index ff64ece4494..66648dda8c6 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/match_tools.cpp
+++ b/searchcore/src/vespa/searchcore/proton/matching/match_tools.cpp
@@ -275,11 +275,13 @@ MatchToolsFactory::createTask(vespalib::stringref attribute, vespalib::stringref
? std::make_unique<AttributeOperationTask>(_requestContext, attribute, operation)
: std::unique_ptr<AttributeOperationTask>();
}
+
std::unique_ptr<AttributeOperationTask>
MatchToolsFactory::createOnMatchTask() const {
const auto & op = _rankSetup.getMutateOnMatch();
return createTask(op._attribute, op._operation);
}
+
std::unique_ptr<AttributeOperationTask>
MatchToolsFactory::createOnFirstPhaseTask() const {
const auto & op = _rankSetup.getMutateOnFirstPhase();
@@ -292,6 +294,7 @@ MatchToolsFactory::createOnFirstPhaseTask() const {
return createTask(op._attribute, op._operation);
}
}
+
std::unique_ptr<AttributeOperationTask>
MatchToolsFactory::createOnSecondPhaseTask() const {
const auto & op = _rankSetup.getMutateOnSecondPhase();
@@ -302,6 +305,7 @@ MatchToolsFactory::createOnSecondPhaseTask() const {
return createTask(op._attribute, op._operation);
}
}
+
std::unique_ptr<AttributeOperationTask>
MatchToolsFactory::createOnSummaryTask() const {
const auto & op = _rankSetup.getMutateOnSummary();