aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/executeinfo.cpp
blob: 6a7ca84b72fe355ec360f6ff4ade19ae17422219 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Vespa.ai. 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);

}