aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/executeinfo.cpp
blob: e5d20f047f54bed85e8d62b13fbee78d40613101 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "executeinfo.h"

namespace search::queryeval {

const ExecuteInfo ExecuteInfo::TRUE(true, 1.0, nullptr);
const ExecuteInfo ExecuteInfo::FALSE(false, 1.0, nullptr);

}