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

#include "table.h"
#include <limits>

namespace search::fef {

Table::Table() :
    _table(),
    _max(-std::numeric_limits<double>::max())
{
    _table.reserve(256);
}

Table::~Table() = default;

}