aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/array.cpp
blob: 4de989a0ab58953c8e133063c941f253e3965310 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "array.hpp"
#include "array_equal.hpp"

namespace vespalib {

template class Array<signed char>;
template class Array<char>;
template class Array<int16_t>;
template class Array<int32_t>;
template class Array<int64_t>;
template class Array<unsigned char>;
template class Array<uint32_t>;
template class Array<uint64_t>;
template class Array<float>;
template class Array<double>;

}