summaryrefslogtreecommitdiffstats
path: root/src/btop_input.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/btop_input.cpp')
-rw-r--r--src/btop_input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/btop_input.cpp b/src/btop_input.cpp
index 88f307b..fb9e46d 100644
--- a/src/btop_input.cpp
+++ b/src/btop_input.cpp
@@ -49,7 +49,7 @@ namespace rng = std::ranges;
namespace Input {
//* Map for translating key codes to readable values
- const unordered_flat_map<string, string> Key_escapes = {
+ const std::unordered_map<string, string> Key_escapes = {
{"\033", "escape"},
{"\n", "enter"},
{" ", "space"},
@@ -92,7 +92,7 @@ namespace Input {
std::atomic<bool> interrupt (false);
std::atomic<bool> polling (false);
array<int, 2> mouse_pos;
- unordered_flat_map<string, Mouse_loc> mouse_mappings;
+ std::unordered_map<string, Mouse_loc> mouse_mappings;
deque<string> history(50, "");
string old_filter;