summaryrefslogtreecommitdiffstats
path: root/src/btop_input.hpp
diff options
context:
space:
mode:
authorJakob P. Liljenberg <admin@qvantnet.com>2024-01-03 16:34:01 +0100
committerGitHub <noreply@github.com>2024-01-03 16:34:01 +0100
commitef788efc536733a441949dab854b0a6bea5ef33e (patch)
tree4a27a7212369425705973fc29f9c8feff00b00ba /src/btop_input.hpp
parentc90e3f9b1508f55d281495468297df409f974eb0 (diff)
parenta29545c4079e9bc5203e09965ac03fabe975bd7e (diff)
Merge branch 'main' into lldb-term-size
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;