aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/table.cpp
blob: 5fd698a30e5955556ae84f318b6f5e9fa1bf2dcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. 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;

}