Merge pull request #292 from k3DW/explicit-instantiation

Ensure each container type can be explicitly instantiated
This commit is contained in:
joaquintides
2024-10-23 16:47:16 +02:00
committed by GitHub
11 changed files with 56 additions and 0 deletions
@@ -190,6 +190,7 @@ namespace boost {
}
template <bool avoid_explicit_instantiation = true>
concurrent_flat_map(
unordered_flat_map<Key, T, Hash, Pred, Allocator>&& other)
: table_(std::move(other.table_))
@@ -187,6 +187,7 @@ namespace boost {
}
template <bool avoid_explicit_instantiation = true>
concurrent_flat_set(
unordered_flat_set<Key, Hash, Pred, Allocator>&& other)
: table_(std::move(other.table_))
@@ -197,6 +197,7 @@ namespace boost {
{
}
template <bool avoid_explicit_instantiation = true>
concurrent_node_map(
unordered_node_map<Key, T, Hash, Pred, Allocator>&& other)
: table_(std::move(other.table_))
@@ -194,6 +194,7 @@ namespace boost {
{
}
template <bool avoid_explicit_instantiation = true>
concurrent_node_set(
unordered_node_set<Key, Hash, Pred, Allocator>&& other)
: table_(std::move(other.table_))
@@ -182,6 +182,7 @@ namespace boost {
{
}
template <bool avoid_explicit_instantiation = true>
unordered_flat_map(
concurrent_flat_map<Key, T, Hash, KeyEqual, Allocator>&& other)
: table_(std::move(other.table_))
@@ -178,6 +178,7 @@ namespace boost {
{
}
template <bool avoid_explicit_instantiation = true>
unordered_flat_set(
concurrent_flat_set<Key, Hash, KeyEqual, Allocator>&& other)
: table_(std::move(other.table_))
@@ -189,6 +189,7 @@ namespace boost {
{
}
template <bool avoid_explicit_instantiation = true>
unordered_node_map(
concurrent_node_map<Key, T, Hash, KeyEqual, Allocator>&& other)
: table_(std::move(other.table_))
@@ -187,6 +187,7 @@ namespace boost {
{
}
template <bool avoid_explicit_instantiation = true>
unordered_node_set(
concurrent_node_set<Key, Hash, KeyEqual, Allocator>&& other)
: table_(std::move(other.table_))