summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/base.cpp
blob: e149b7d4d2cdbb9d8e0501c33e13f9dcb34bf385 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/fastos/fastos.h>
#include <vespa/searchlib/query/base.h>

namespace search {

Object::~Object(void)
{
}

vespalib::string Object::toString() const
{
    return vespalib::string("");
}

}