aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/streamed/streamed_value_builder.cpp
blob: 4323aa067985044d0bd0ab25a9efc45e09bd7431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. 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