aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/engine/docsumapi.cpp
blob: 8ac34d37273c1d03174e28ede6ac9614bc882ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "docsumapi.h"
#include <cassert>

namespace search::engine {

DocsumReply::UP
DocsumServer::getDocsums(DocsumRequest::UP request)
{
    (void) request;
    assert(false);
    return DocsumReply::UP();
}

}