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

#include "hash_set.hpp"
#include <vespa/vespalib/util/array_equal.hpp>

namespace vespalib {
}

VESPALIB_HASH_SET_INSTANTIATE(int16_t);
VESPALIB_HASH_SET_INSTANTIATE(uint16_t);
VESPALIB_HASH_SET_INSTANTIATE(int32_t);
VESPALIB_HASH_SET_INSTANTIATE(uint32_t);
VESPALIB_HASH_SET_INSTANTIATE(uint64_t);
VESPALIB_HASH_SET_INSTANTIATE(double);
VESPALIB_HASH_SET_INSTANTIATE(vespalib::string);
VESPALIB_HASH_SET_INSTANTIATE(std::string);
VESPALIB_HASH_SET_INSTANTIATE(const void *);