From a7c88e486788298604c892250d856488f7939843 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Thu, 28 Nov 2024 16:07:38 +0900 Subject: Swap Robin Hood hashmaps for STL Robin Hood is dead. Long live Robin Hood. --- src/aflrun.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/aflrun.cpp') diff --git a/src/aflrun.cpp b/src/aflrun.cpp index fb94cb16..5cb1c61d 100644 --- a/src/aflrun.cpp +++ b/src/aflrun.cpp @@ -6,9 +6,6 @@ #include namespace bo = boost; -#include -namespace rh = robin_hood; - #include #include #include @@ -23,7 +20,10 @@ namespace rh = robin_hood; #include #include #include +#include +#include #include +namespace rh = std; namespace { struct Fringe; struct SeedFringes; struct ClusterPair; } template<> struct std::hash @@ -450,7 +450,7 @@ unique_ptr g = nullptr; struct AFLRunGraph { - vector> src_to_dst; + vector> src_to_dst; vector> dst_to_src; rh::unordered_map, vector> call_hashes; explicit AFLRunGraph(reach_t num) -- cgit 1.4.1