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

#include "mutable_dense_value_view.h"

namespace search::features::mutable_value {

MutableDenseValueView::MutableDenseValueView(const ValueType &type_in)
  : _type(type_in),
    _cells()
{
    assert(_type.is_dense());
}

}