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

#include "streamed_value_builder.h"

namespace vespalib::eval {

template<typename T>
StreamedValueBuilder<T>::~StreamedValueBuilder() = default;

template class StreamedValueBuilder<double>;
template class StreamedValueBuilder<float>;
template class StreamedValueBuilder<BFloat16>;
template class StreamedValueBuilder<Int8Float>;

} // namespace