summaryrefslogtreecommitdiffstats
path: root/src/btop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/btop.cpp')
-rw-r--r--src/btop.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/btop.cpp b/src/btop.cpp
index 252f2a9..8a0eb05 100644
--- a/src/btop.cpp
+++ b/src/btop.cpp
@@ -32,6 +32,7 @@ tab-size = 4
#include <tuple>
#include <regex>
#include <chrono>
+#include <utility>
#ifdef __APPLE__
#include <CoreFoundation/CoreFoundation.h>
#include <mach-o/dyld.h>
@@ -416,7 +417,7 @@ namespace Runner {
};
string debug_bg;
- unordered_flat_map<string, array<uint64_t, 2>> debug_times;
+ std::unordered_map<string, array<uint64_t, 2>> debug_times;
class MyNumPunct : public std::numpunct<char>
{