diff --git a/differ.h b/differ.h index e8c2f047..ca6cb459 100644 --- a/differ.h +++ b/differ.h @@ -32,7 +32,7 @@ namespace security::bindiff { class MatchingContext; // These need to be sorted -using Histogram = absl::btree_map; +using Histogram = std::map; using Confidences = absl::btree_map; // Main entry point to the differ, runs the core algorithm and produces a diff --git a/reader.h b/reader.h index 1d4bc7e9..fc270acf 100644 --- a/reader.h +++ b/reader.h @@ -32,7 +32,7 @@ struct FlowGraphInfo { int edge_count = 0; int instruction_count = 0; }; -using FlowGraphInfos = absl::btree_map; +using FlowGraphInfos = std::map; struct FixedPointInfo { friend bool operator==(const FixedPointInfo& lhs, const FixedPointInfo& rhs) { @@ -69,7 +69,7 @@ struct FixedPointInfo { bool evaluate; bool comments_ported; }; -using FixedPointInfos = absl::btree_set; +using FixedPointInfos = std::set; bool operator<(const FixedPointInfo& one, const FixedPointInfo& two);