about summary refs log tree commit diff
path: root/src/aflrun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/aflrun.cpp')
-rw-r--r--src/aflrun.cpp8
1 files changed, 4 insertions, 4 deletions
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 <boost/make_shared.hpp>
 namespace bo = boost;
 
-#include <robin_hood.h>
-namespace rh = robin_hood;
-
 #include <algorithm>
 #include <cassert>
 #include <cmath>
@@ -23,7 +20,10 @@ namespace rh = robin_hood;
 #include <stack>
 #include <string>
 #include <tuple>
+#include <unordered_map>
+#include <unordered_set>
 #include <vector>
+namespace rh = std;
 
 namespace { struct Fringe; struct SeedFringes; struct ClusterPair; }
 template<> struct std::hash<Fringe>
@@ -450,7 +450,7 @@ unique_ptr<AFLRunGlobals> g = nullptr;
 
 struct AFLRunGraph
 {
-	vector<rh::unordered_flat_set<reach_t>> src_to_dst;
+	vector<rh::unordered_set<reach_t>> src_to_dst;
 	vector<vector<reach_t>> dst_to_src;
 	rh::unordered_map<pair<reach_t, reach_t>, vector<u32>> call_hashes;
 	explicit AFLRunGraph(reach_t num)