Skip to content

Commit

Permalink
Fix in Unique_hash_map
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Oct 9, 2024
1 parent 1f2f6c8 commit 98d4690
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Hash_map/include/CGAL/Hash_map/internal/chained_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#ifndef CGAL_HASH_MAP_INTERNAL_CHAINED_MAP_H
#define CGAL_HASH_MAP_INTERNAL_CHAINED_MAP_H

#include <CGAL/config.h>
#include <CGAL/memory.h>
#include <iostream>
#include <limits>
Expand Down Expand Up @@ -257,7 +258,7 @@ chained_map<T, Allocator>::chained_map(chained_map<T, Allocator>&& D)
noexcept(std::is_nothrow_move_constructible_v<Allocator> && std::is_nothrow_move_constructible_v<T>)
: table(std::exchange(D.table, nullptr))
, table_end(std::exchange(D.table_end, nullptr))
, free(std::exchange(D.free, nullptr))
, free BOOST_PREVENT_MACRO_SUBSTITUTION (std::exchange(D.free, nullptr))
, table_size(std::exchange(D.table_size, 0))
, table_size_1(std::exchange(D.table_size_1, 0))
, alloc(std::move(D.alloc))
Expand Down

0 comments on commit 98d4690

Please sign in to comment.