From 3485403cd6756f98d2da9ffca7f17989b7ff185c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Can=20B=C3=B6l=C3=BCk?= Date: Wed, 24 Jun 2020 06:09:08 +0200 Subject: [PATCH] Don't use stack map. --- VTIL-Architecture/trace/tracer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VTIL-Architecture/trace/tracer.cpp b/VTIL-Architecture/trace/tracer.cpp index 8041822..3e2e8ac 100644 --- a/VTIL-Architecture/trace/tracer.cpp +++ b/VTIL-Architecture/trace/tracer.cpp @@ -33,7 +33,7 @@ namespace vtil { // Internal type definitions. // - using path_history_t = stack_map, uint32_t>; + using path_history_t = std::map, uint32_t>; using partial_tracer_t = std::function; // Forward defs.