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

#include "array_parser.hpp"

#include <vespa/log/log.h>
LOG_SETUP(".features.array_parser");

namespace search::features {

void
ArrayParser::parse(const vespalib::string &input, std::vector<int8_t> &output)
{
    parse<std::vector<int8_t>, int16_t>(input, output);
}

}