Don't use stack map.

This commit is contained in:
Can Bölük 2020-06-24 06:09:08 +02:00
parent 7817ec0570
commit 3485403cd6

View file

@ -33,7 +33,7 @@ namespace vtil
{
// Internal type definitions.
//
using path_history_t = stack_map<std::pair<const basic_block*, const basic_block*>, uint32_t>;
using path_history_t = std::map<std::pair<const basic_block*, const basic_block*>, uint32_t>;
using partial_tracer_t = std::function<symbolic::expression( bitcnt_t offset, bitcnt_t size )>;
// Forward defs.