From 0d7ba57fa44b394f5ccef791272eceb315a7d248 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 15 Nov 2017 23:03:29 +0100 Subject: [PATCH] Move flat_hash_map to tracy namespace. --- server/tracy_flat_hash_map.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/tracy_flat_hash_map.hpp b/server/tracy_flat_hash_map.hpp index b6f991c0..d65b5fb6 100644 --- a/server/tracy_flat_hash_map.hpp +++ b/server/tracy_flat_hash_map.hpp @@ -21,7 +21,7 @@ #define SKA_NOINLINE(...) __VA_ARGS__ __attribute__((noinline)) #endif -namespace ska +namespace tracy { struct prime_number_hash_policy; struct power_of_two_hash_policy; @@ -1435,7 +1435,7 @@ public: template struct power_of_two_std_hash : std::hash { - typedef ska::power_of_two_hash_policy hash_policy; + typedef tracy::power_of_two_hash_policy hash_policy; }; -} // end namespace ska +} // end namespace tracy