We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b8412 commit 8e16037Copy full SHA for 8e16037
include/boost/openmethod/policies/minimal_perfect_hash.hpp
@@ -21,17 +21,6 @@ namespace boost::openmethod {
21
22
namespace detail {
23
24
-#if defined(UINTPTR_MAX)
25
-using uintptr = std::uintptr_t;
26
-constexpr uintptr uintptr_max = UINTPTR_MAX;
27
-#else
28
-static_assert(
29
- sizeof(std::size_t) == sizeof(void*),
30
- "This implementation requires that size_t and void* have the same size.");
31
-using uintptr = std::size_t;
32
-constexpr uintptr uintptr_max = (std::numeric_limits<std::size_t>::max)();
33
-#endif
34
-
35
template<class Registry>
36
std::vector<type_id> minimal_perfect_hash_control;
37
0 commit comments