aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/memoryindex/push_context.cpp
blob: 7df17d816cb45a3cd64208d8b14ffa4b4fbe8879 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "push_context.h"

namespace search::memoryindex {

PushContext::PushContext(vespalib::ISequencedTaskExecutor::ExecutorId id)
    : BundledFieldsContext(id)
{
}

PushContext::~PushContext() = default;

}