summaryrefslogtreecommitdiffstats
path: root/src/btop_input.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/btop_input.hpp')
-rw-r--r--src/btop_input.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/btop_input.hpp b/src/btop_input.hpp
index 5a1a28e..fc6fda0 100644
--- a/src/btop_input.hpp
+++ b/src/btop_input.hpp
@@ -21,10 +21,9 @@ tab-size = 4
#include <string>
#include <atomic>
#include <array>
-#include <robin_hood.h>
+#include <unordered_map>
#include <deque>
-using robin_hood::unordered_flat_map;
using std::array;
using std::atomic;
using std::deque;
@@ -44,7 +43,7 @@ namespace Input {
};
//? line, col, height, width
- extern unordered_flat_map<string, Mouse_loc> mouse_mappings;
+ extern std::unordered_map<string, Mouse_loc> mouse_mappings;
extern atomic<bool> interrupt;
extern atomic<bool> polling;