From 087f2052fcca33bf6ccbe5028c21b91376af50c7 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Wed, 27 Sep 2023 12:17:49 -0700 Subject: [PATCH] Update include paths to use ContainerHash instead of Functional for `hash` --- examples/case_insensitive.hpp | 2 +- include/boost/unordered/unordered_flat_map.hpp | 2 +- include/boost/unordered/unordered_flat_map_fwd.hpp | 2 +- include/boost/unordered/unordered_flat_set.hpp | 2 +- include/boost/unordered/unordered_flat_set_fwd.hpp | 2 +- include/boost/unordered/unordered_map.hpp | 2 +- include/boost/unordered/unordered_map_fwd.hpp | 2 +- include/boost/unordered/unordered_node_map.hpp | 2 +- include/boost/unordered/unordered_node_map_fwd.hpp | 2 +- include/boost/unordered/unordered_node_set.hpp | 2 +- include/boost/unordered/unordered_node_set_fwd.hpp | 2 +- include/boost/unordered/unordered_set.hpp | 2 +- include/boost/unordered/unordered_set_fwd.hpp | 2 +- test/unordered/emplace_tests.cpp | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/examples/case_insensitive.hpp b/examples/case_insensitive.hpp index 83a388d8..5818bff7 100644 --- a/examples/case_insensitive.hpp +++ b/examples/case_insensitive.hpp @@ -14,7 +14,7 @@ #define BOOST_HASH_EXAMPLES_CASE_INSENSITIVE_HEADER #include -#include +#include namespace hash_examples { diff --git a/include/boost/unordered/unordered_flat_map.hpp b/include/boost/unordered/unordered_flat_map.hpp index 37cf6d8c..d70064a8 100644 --- a/include/boost/unordered/unordered_flat_map.hpp +++ b/include/boost/unordered/unordered_flat_map.hpp @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include diff --git a/include/boost/unordered/unordered_flat_map_fwd.hpp b/include/boost/unordered/unordered_flat_map_fwd.hpp index 275a4327..be8e8176 100644 --- a/include/boost/unordered/unordered_flat_map_fwd.hpp +++ b/include/boost/unordered/unordered_flat_map_fwd.hpp @@ -11,7 +11,7 @@ #pragma once #endif -#include +#include #include #include diff --git a/include/boost/unordered/unordered_flat_set.hpp b/include/boost/unordered/unordered_flat_set.hpp index 70286cbb..3198dcee 100644 --- a/include/boost/unordered/unordered_flat_set.hpp +++ b/include/boost/unordered/unordered_flat_set.hpp @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include diff --git a/include/boost/unordered/unordered_flat_set_fwd.hpp b/include/boost/unordered/unordered_flat_set_fwd.hpp index 9e670b22..e62db6ba 100644 --- a/include/boost/unordered/unordered_flat_set_fwd.hpp +++ b/include/boost/unordered/unordered_flat_set_fwd.hpp @@ -11,7 +11,7 @@ #pragma once #endif -#include +#include #include #include diff --git a/include/boost/unordered/unordered_map.hpp b/include/boost/unordered/unordered_map.hpp index c59ce96d..4272b402 100644 --- a/include/boost/unordered/unordered_map.hpp +++ b/include/boost/unordered/unordered_map.hpp @@ -20,7 +20,7 @@ #include #include -#include +#include #include diff --git a/include/boost/unordered/unordered_map_fwd.hpp b/include/boost/unordered/unordered_map_fwd.hpp index 729932ba..ad5fff1d 100644 --- a/include/boost/unordered/unordered_map_fwd.hpp +++ b/include/boost/unordered/unordered_map_fwd.hpp @@ -12,7 +12,7 @@ #pragma once #endif -#include +#include #include #include diff --git a/include/boost/unordered/unordered_node_map.hpp b/include/boost/unordered/unordered_node_map.hpp index 3defba3f..51f2e0eb 100644 --- a/include/boost/unordered/unordered_node_map.hpp +++ b/include/boost/unordered/unordered_node_map.hpp @@ -19,7 +19,7 @@ #include #include -#include +#include #include #include diff --git a/include/boost/unordered/unordered_node_map_fwd.hpp b/include/boost/unordered/unordered_node_map_fwd.hpp index 35da84ba..ad58127c 100644 --- a/include/boost/unordered/unordered_node_map_fwd.hpp +++ b/include/boost/unordered/unordered_node_map_fwd.hpp @@ -11,7 +11,7 @@ #pragma once #endif -#include +#include #include #include diff --git a/include/boost/unordered/unordered_node_set.hpp b/include/boost/unordered/unordered_node_set.hpp index 1dac7405..aa244f50 100644 --- a/include/boost/unordered/unordered_node_set.hpp +++ b/include/boost/unordered/unordered_node_set.hpp @@ -19,7 +19,7 @@ #include #include -#include +#include #include #include diff --git a/include/boost/unordered/unordered_node_set_fwd.hpp b/include/boost/unordered/unordered_node_set_fwd.hpp index 9f87badc..d33af2d2 100644 --- a/include/boost/unordered/unordered_node_set_fwd.hpp +++ b/include/boost/unordered/unordered_node_set_fwd.hpp @@ -11,7 +11,7 @@ #pragma once #endif -#include +#include #include #include diff --git a/include/boost/unordered/unordered_set.hpp b/include/boost/unordered/unordered_set.hpp index a892583b..6791210d 100644 --- a/include/boost/unordered/unordered_set.hpp +++ b/include/boost/unordered/unordered_set.hpp @@ -20,7 +20,7 @@ #include #include -#include +#include #include diff --git a/include/boost/unordered/unordered_set_fwd.hpp b/include/boost/unordered/unordered_set_fwd.hpp index aeb06c15..57d800d9 100644 --- a/include/boost/unordered/unordered_set_fwd.hpp +++ b/include/boost/unordered/unordered_set_fwd.hpp @@ -12,7 +12,7 @@ #pragma once #endif -#include +#include #include #include diff --git a/test/unordered/emplace_tests.cpp b/test/unordered/emplace_tests.cpp index df6bf904..b244cb20 100644 --- a/test/unordered/emplace_tests.cpp +++ b/test/unordered/emplace_tests.cpp @@ -8,7 +8,7 @@ #include "../helpers/count.hpp" #include "../helpers/test.hpp" -#include +#include #include #include