diff options
| -rw-r--r-- | src/ingestor.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ingestor.hpp b/src/ingestor.hpp index 81041ff..dd803ce 100644 --- a/src/ingestor.hpp +++ b/src/ingestor.hpp @@ -8,8 +8,8 @@ #include <connection_fwd.h> #include <cstdio> #include <expected> -#include <flat_map> #include <future> +#include <map> #include <scn/scan.h> #include <span> #include <sys/utsname.h> @@ -97,7 +97,7 @@ namespace WebStat { DB::ConnectionPoolPtr dbpool; mutable Stats stats {}; - std::flat_map<EntityHash, EntityId> existingEntities; + std::map<EntityHash, EntityId> existingEntities; LineBatch queuedLines, processingLines; bool terminated = false; |
